Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: userio - remove unneeded semicolon

Remove a redundant semicolon from the code.

./drivers/input/serio/userio.c:89:35-36: Unneeded semicolon

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=11431
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/20241022064056.112575-1-yang.lee@linux.alibaba.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Yang Li and committed by
Dmitry Torokhov
92a22842 20d1278d

+1 -1
+1 -1
drivers/input/serio/userio.c
··· 86 86 return -ENOMEM; 87 87 88 88 userio->serio->write = userio_device_write; 89 - userio->serio->port_data = userio;; 89 + userio->serio->port_data = userio; 90 90 91 91 file->private_data = no_free_ptr(userio); 92 92