diff options
| author | Randy Dunlap <rdunlap@infradead.org> | 2016-12-26 12:58:34 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-01-11 03:27:30 -0500 |
| commit | 546cf3ef9c92b76ff0037c871b939e63caea98b3 (patch) | |
| tree | 50168961e58c6b26bbc499befd3de5967aff6db8 | |
| parent | 0fa2c8eb270413160557babda519aa3c21e2bfaf (diff) | |
auxdisplay: fix new ht16k33 build errors
Fix build errors caused by selecting incorrect kconfig symbols.
drivers/built-in.o:(.data+0x19cec): undefined reference to `sys_fillrect'
drivers/built-in.o:(.data+0x19cf0): undefined reference to `sys_copyarea'
drivers/built-in.o:(.data+0x19cf4): undefined reference to `sys_imageblit'
Fixes: 31114fa95bdb (auxdisplay: ht16k33: select framebuffer helper modules)
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Acked-by: Robin van der Gracht <robin@protonic.nl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/auxdisplay/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/auxdisplay/Kconfig b/drivers/auxdisplay/Kconfig index 4ef4c5caed4f..8a8e403644d6 100644 --- a/drivers/auxdisplay/Kconfig +++ b/drivers/auxdisplay/Kconfig | |||
| @@ -132,9 +132,9 @@ config HT16K33 | |||
| 132 | tristate "Holtek Ht16K33 LED controller with keyscan" | 132 | tristate "Holtek Ht16K33 LED controller with keyscan" |
| 133 | depends on FB && OF && I2C && INPUT | 133 | depends on FB && OF && I2C && INPUT |
| 134 | select FB_SYS_FOPS | 134 | select FB_SYS_FOPS |
| 135 | select FB_CFB_FILLRECT | 135 | select FB_SYS_FILLRECT |
| 136 | select FB_CFB_COPYAREA | 136 | select FB_SYS_COPYAREA |
| 137 | select FB_CFB_IMAGEBLIT | 137 | select FB_SYS_IMAGEBLIT |
| 138 | select INPUT_MATRIXKMAP | 138 | select INPUT_MATRIXKMAP |
| 139 | select FB_BACKLIGHT | 139 | select FB_BACKLIGHT |
| 140 | help | 140 | help |
