Skip to content

Commit 4e237d8

Browse files
committed
Merge tag 'drm-misc-next-fixes-2023-06-15' of git://anongit.freedesktop.org/drm/drm-misc into drm-next
Short summary of fixes pull: * Fix fbdev initializer macros Signed-off-by: Dave Airlie <[email protected]> From: Thomas Zimmermann <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/20230615114009.GA27261@linux-uq9g
2 parents e245db7 + cf683e8 commit 4e237d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/linux/fb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ extern ssize_t fb_io_write(struct fb_info *info, const char __user *buf,
552552
.fb_imageblit = cfb_imageblit
553553

554554
#define __FB_DEFAULT_IO_OPS_MMAP \
555-
.fb_mmap = NULL // default implementation
555+
.fb_mmap = NULL /* default implementation */
556556

557557
#define FB_DEFAULT_IO_OPS \
558558
__FB_DEFAULT_IO_OPS_RDWR, \
@@ -585,7 +585,7 @@ extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
585585
.fb_imageblit = sys_imageblit
586586

587587
#define __FB_DEFAULT_SYS_OPS_MMAP \
588-
.fb_mmap = NULL // default implementation
588+
.fb_mmap = NULL /* default implementation */
589589

590590
#define FB_DEFAULT_SYS_OPS \
591591
__FB_DEFAULT_SYS_OPS_RDWR, \

0 commit comments

Comments
 (0)