projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b731192
)
m68knommu: fix 'screen_bits' defined but not used
author
Greg Ungerer
<gerg@linux-m68k.org>
Mon, 17 Jan 2022 05:21:54 +0000
(15:21 +1000)
committer
Greg Ungerer
<gerg@linux-m68k.org>
Mon, 7 Mar 2022 04:51:11 +0000
(14:51 +1000)
The 'screen_bits' LCD initializer bit array is only required if
CONFIG_INIT_LCD is enabled, otherwise we get the following warning:
arch/m68k/68000/screen.h:4:22: warning: 'screen_bits' defined but not used [-Wunused-variable]
static unsigned char screen_bits[] = {
^~~~~~~~~~~
Make the inclusion of 'screen_bits' conditional on CONFIG_INIT_LCD.
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Reported-by: kernel test robot <lkp@intel.com>
arch/m68k/68000/screen.h
patch
|
blob
|
history
diff --git
a/arch/m68k/68000/screen.h
b/arch/m68k/68000/screen.h
index 2089bdf02688f33731bcccc702d14aab0bfdca65..8f7418008908b6ad24a67c4d2f6bba6371dfd29d 100644
(file)
--- a/
arch/m68k/68000/screen.h
+++ b/
arch/m68k/68000/screen.h
@@
-1,4
+1,5
@@
/* Created with The GIMP */
+#ifdef CONFIG_INIT_LCD
#define screen_width 320
#define screen_height 240
static unsigned char screen_bits[] = {
@@
-802,3
+803,4
@@
static unsigned char screen_bits[] = {
0x93, 0x10, 0xe2, 0x11, 0x00, 0x94, 0x22, 0x52, 0x69, 0x53, 0x52, 0x45,
0x49, 0x22, 0xa4, 0x4a, 0x55, 0x29, 0x2a, 0xa4, 0x52, 0x42, 0xaa, 0xa5,
0x52, 0xa8, 0xaa, 0x55, 0x4a, 0xab, 0xa9, 0x4a, 0x54, 0x49, 0x32, 0x24 };
+#endif /* CONFIG_INIT_LCD */