[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <755134062a3e4f74ef781cb8593b0f1e@208suo.com>
Date: Sun, 16 Jul 2023 12:11:11 +0800
From: wuyonggang001@...suo.com
To: jikos@...nel.org, benjamin.tissoires@...hat.com
Cc: linux-usb@...r.kernel.org, linux-input@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] HID: hiddev: Modify Format
Fix the following checkpatch error(s):
ERROR: "inode * inode" should be "inode *inode"
ERROR: "file * file" should be "file *file"
Signed-off-by: Libing Zhang <zhanglibing@...rlc.com>
---
drivers/hid/usbhid/hiddev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/hid/usbhid/hiddev.c b/drivers/hid/usbhid/hiddev.c
index 59cf3ddfdf78..581dc33197d0 100644
--- a/drivers/hid/usbhid/hiddev.c
+++ b/drivers/hid/usbhid/hiddev.c
@@ -213,7 +213,7 @@ static int hiddev_fasync(int fd, struct file *file,
int on)
/*
* release file op
*/
-static int hiddev_release(struct inode * inode, struct file * file)
+static int hiddev_release(struct inode *inode, struct file *file)
{
struct hiddev_list *list = file->private_data;
unsigned long flags;
Powered by blists - more mailing lists