mirror of
https://github.com/sysprog21/lkmpg.git
synced 2024-11-25 17:56:36 +08:00
Shorten sample code
This commit is contained in:
parent
52dfb6744d
commit
1c93f2f5ef
|
@ -43,9 +43,7 @@ static struct class *cls;
|
||||||
*/
|
*/
|
||||||
static int device_open(struct inode *inode, struct file *file)
|
static int device_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG
|
|
||||||
pr_info("device_open(%p)\n", file);
|
pr_info("device_open(%p)\n", file);
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We don't want to talk to two processes at the same time
|
* We don't want to talk to two processes at the same time
|
||||||
|
@ -64,9 +62,7 @@ static int device_open(struct inode *inode, struct file *file)
|
||||||
|
|
||||||
static int device_release(struct inode *inode, struct file *file)
|
static int device_release(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG
|
|
||||||
pr_info("device_release(%p,%p)\n", inode, file);
|
pr_info("device_release(%p,%p)\n", inode, file);
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We're now ready for our next caller
|
* We're now ready for our next caller
|
||||||
|
@ -92,9 +88,7 @@ static ssize_t device_read(struct file *file, /* see include/linux/fs.h */
|
||||||
*/
|
*/
|
||||||
int bytes_read = 0;
|
int bytes_read = 0;
|
||||||
|
|
||||||
#ifdef DEBUG
|
pr_info("device_read(%p,%p,%ld)\n", file, buffer, length);
|
||||||
pr_info("device_read(%p,%p,%d)\n", file, buffer, length);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we're at the end of the message, return 0
|
* If we're at the end of the message, return 0
|
||||||
|
@ -119,9 +113,7 @@ static ssize_t device_read(struct file *file, /* see include/linux/fs.h */
|
||||||
bytes_read++;
|
bytes_read++;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DEBUG
|
pr_info("Read %d bytes, %ld left\n", bytes_read, length);
|
||||||
pr_info("Read %d bytes, %d left\n", bytes_read, length);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Read functions are supposed to return the number
|
* Read functions are supposed to return the number
|
||||||
|
@ -141,9 +133,7 @@ static ssize_t device_write(struct file *file,
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
#ifdef DEBUG
|
pr_info("device_write(%p,%s,%ld)", file, buffer, length);
|
||||||
pr_info("device_write(%p,%s,%d)", file, buffer, length);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
for (i = 0; i < length && i < BUF_LEN; i++)
|
for (i = 0; i < length && i < BUF_LEN; i++)
|
||||||
get_user(Message[i], buffer + i);
|
get_user(Message[i], buffer + i);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user