From 23c0a73c78137f9597cc7cc5521f6e3bc1e566b6 Mon Sep 17 00:00:00 2001 From: Chih-En Lin Date: Fri, 24 Mar 2023 11:36:33 +0800 Subject: [PATCH] procfs: Enforce Linux naming style --- examples/procfs1.c | 4 ++-- examples/procfs2.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/procfs1.c b/examples/procfs1.c index 9db809e..c27c357 100644 --- a/examples/procfs1.c +++ b/examples/procfs1.c @@ -16,7 +16,7 @@ static struct proc_dir_entry *our_proc_file; -static ssize_t procfile_read(struct file *filePointer, char __user *buffer, +static ssize_t procfile_read(struct file *file_pointer, char __user *buffer, size_t buffer_length, loff_t *offset) { char s[13] = "HelloWorld!\n"; @@ -27,7 +27,7 @@ static ssize_t procfile_read(struct file *filePointer, char __user *buffer, pr_info("copy_to_user failed\n"); ret = 0; } else { - pr_info("procfile read %s\n", filePointer->f_path.dentry->d_name.name); + pr_info("procfile read %s\n", file_pointer->f_path.dentry->d_name.name); *offset += len; } diff --git a/examples/procfs2.c b/examples/procfs2.c index 896a777..ec55cf0 100644 --- a/examples/procfs2.c +++ b/examples/procfs2.c @@ -25,7 +25,7 @@ static char procfs_buffer[PROCFS_MAX_SIZE]; static unsigned long procfs_buffer_size = 0; /* This function is called then the /proc file is read */ -static ssize_t procfile_read(struct file *filePointer, char __user *buffer, +static ssize_t procfile_read(struct file *file_pointer, char __user *buffer, size_t buffer_length, loff_t *offset) { char s[13] = "HelloWorld!\n"; @@ -36,7 +36,7 @@ static ssize_t procfile_read(struct file *filePointer, char __user *buffer, pr_info("copy_to_user failed\n"); ret = 0; } else { - pr_info("procfile read %s\n", filePointer->f_path.dentry->d_name.name); + pr_info("procfile read %s\n", file_pointer->f_path.dentry->d_name.name); *offset += len; }