diff options
author | Yue Zou <zouyue3@huawei.com> | 2021-01-18 04:01:37 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-01-18 23:39:28 +0300 |
commit | 0627cc334d408953c0ff9ef8731325c2d02572ed (patch) | |
tree | 048b55e4b3632c28a4a0439acabb1ac5c0b8d67d /include/linux/sony-laptop.h | |
parent | c47c042942d31dec2f0b4bd66b948a51a2eb4985 (diff) | |
download | linux-0627cc334d408953c0ff9ef8731325c2d02572ed.tar.xz |
sony-laptop: Remove unneeded semicolon
Remove a superfluous semicolon after function definition.
Signed-off-by: Yue Zou <zouyue3@huawei.com>
Link: https://lore.kernel.org/r/20210118010137.214378-1-zouyue3@huawei.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'include/linux/sony-laptop.h')
-rw-r--r-- | include/linux/sony-laptop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sony-laptop.h b/include/linux/sony-laptop.h index 374d0fdb0743..1e3c92feea6e 100644 --- a/include/linux/sony-laptop.h +++ b/include/linux/sony-laptop.h @@ -31,7 +31,7 @@ #if IS_ENABLED(CONFIG_SONY_LAPTOP) int sony_pic_camera_command(int command, u8 value); #else -static inline int sony_pic_camera_command(int command, u8 value) { return 0; }; +static inline int sony_pic_camera_command(int command, u8 value) { return 0; } #endif #endif /* __KERNEL__ */ |