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.

Merge tag 'auxdisplay-for-linus-v5.3-rc7' of git://github.com/ojeda/linux

Pull auxdisplay cleanup from Miguel Ojeda:
"Make ht16k33_fb_fix and ht16k33_fb_var constant (Nishka Dasgupta)"

* tag 'auxdisplay-for-linus-v5.3-rc7' of git://github.com/ojeda/linux:
auxdisplay: ht16k33: Make ht16k33_fb_fix and ht16k33_fb_var constant

+2 -2
+2 -2
drivers/auxdisplay/ht16k33.c
··· 74 74 struct ht16k33_fbdev fbdev; 75 75 }; 76 76 77 - static struct fb_fix_screeninfo ht16k33_fb_fix = { 77 + static const struct fb_fix_screeninfo ht16k33_fb_fix = { 78 78 .id = DRIVER_NAME, 79 79 .type = FB_TYPE_PACKED_PIXELS, 80 80 .visual = FB_VISUAL_MONO10, ··· 85 85 .accel = FB_ACCEL_NONE, 86 86 }; 87 87 88 - static struct fb_var_screeninfo ht16k33_fb_var = { 88 + static const struct fb_var_screeninfo ht16k33_fb_var = { 89 89 .xres = HT16K33_MATRIX_LED_MAX_ROWS, 90 90 .yres = HT16K33_MATRIX_LED_MAX_COLS, 91 91 .xres_virtual = HT16K33_MATRIX_LED_MAX_ROWS,