]> Git Repo - linux.git/commitdiff
ACPI: custom_method: fix a coding style issue
authorXiaofei Tan <[email protected]>
Sat, 27 Mar 2021 12:08:21 +0000 (20:08 +0800)
committerRafael J. Wysocki <[email protected]>
Thu, 8 Apr 2021 14:27:02 +0000 (16:27 +0200)
Fix the following coding style issue reported by checkpatch.pl

ERROR: "foo * bar" should be "foo *bar"
FILE: drivers/acpi/custom_method.c:22:
+static ssize_t cm_write(struct file *file, const char __user * user_buf,

Signed-off-by: Xiaofei Tan <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
drivers/acpi/custom_method.c

index 7b54dc95d36b3171035ed6642d42c8605ce67869..443fdf62dd227034a2eb0159314fff31fdd6c2a0 100644 (file)
@@ -19,7 +19,7 @@ static struct dentry *cm_dentry;
 
 /* /sys/kernel/debug/acpi/custom_method */
 
-static ssize_t cm_write(struct file *file, const char __user * user_buf,
+static ssize_t cm_write(struct file *file, const char __user *user_buf,
                        size_t count, loff_t *ppos)
 {
        static char *buf;
This page took 0.057893 seconds and 4 git commands to generate.