fbdev: Use /* */ comment in initializer macro
Use /* */ in initializer macro to avoid out-commenting the comma at the end of the line. Reported-by: Christian König <ckoenig.leichtzumerken@gmail.com> Closes: https://lore.kernel.org/dri-devel/20230530150253.22758-1-tzimmermann@suse.de/T/#m356cda2679c17d7a01f30ce2b5282cd9046ea6d4 Fixes: f1061fa641b8 ("fbdev: Add initializer macros for struct fb_ops") Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Helge Deller <deller@gmx.de> Cc: linux-fbdev@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Christian König <christian.koenig@amd.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230614131253.10208-1-tzimmermann@suse.de
This commit is contained in:
parent
db6da59cf2
commit
cf683e8870
@ -552,7 +552,7 @@ extern ssize_t fb_io_write(struct fb_info *info, const char __user *buf,
|
||||
.fb_imageblit = cfb_imageblit
|
||||
|
||||
#define __FB_DEFAULT_IO_OPS_MMAP \
|
||||
.fb_mmap = NULL // default implementation
|
||||
.fb_mmap = NULL /* default implementation */
|
||||
|
||||
#define FB_DEFAULT_IO_OPS \
|
||||
__FB_DEFAULT_IO_OPS_RDWR, \
|
||||
@ -585,7 +585,7 @@ extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
|
||||
.fb_imageblit = sys_imageblit
|
||||
|
||||
#define __FB_DEFAULT_SYS_OPS_MMAP \
|
||||
.fb_mmap = NULL // default implementation
|
||||
.fb_mmap = NULL /* default implementation */
|
||||
|
||||
#define FB_DEFAULT_SYS_OPS \
|
||||
__FB_DEFAULT_SYS_OPS_RDWR, \
|
||||
|
Loading…
x
Reference in New Issue
Block a user