diff options
author | Pali Rohár <pali@kernel.org> | 2022-02-03 19:38:50 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-08 11:00:04 -0500 |
commit | f55d4978e130bbe488f031bcad2763ea90c372bd (patch) | |
tree | 37cde6437d2f64f49d5eec47cfccd36bb92d4146 /include/configs/nokia_rx51.h | |
parent | 5980925e2a5a82b84432e030ee899ff40b3625a2 (diff) | |
download | u-boot-f55d4978e130bbe488f031bcad2763ea90c372bd.tar.gz |
Nokia RX-51: Convert to CONFIG_DM_KEYBOARD
Signed-off-by: Pali Rohár <pali@kernel.org>
Diffstat (limited to 'include/configs/nokia_rx51.h')
-rw-r--r-- | include/configs/nokia_rx51.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/include/configs/nokia_rx51.h b/include/configs/nokia_rx51.h index adfc055a2c9..9be64c3d3f8 100644 --- a/include/configs/nokia_rx51.h +++ b/include/configs/nokia_rx51.h @@ -77,21 +77,10 @@ #define VIDEO_FB_16BPP_PIXEL_SWAP #define VIDEO_FB_16BPP_WORD_SWAP -/* functions for cfb_console */ -#define VIDEO_KBD_INIT_FCT rx51_kp_init() -#define VIDEO_TSTC_FCT rx51_kp_tstc -#define VIDEO_GETC_FCT rx51_kp_getc -#ifndef __ASSEMBLY__ -struct stdio_dev; -int rx51_kp_init(void); -int rx51_kp_tstc(struct stdio_dev *sdev); -int rx51_kp_getc(struct stdio_dev *sdev); -#endif - /* Environment information */ #define CONFIG_EXTRA_ENV_SETTINGS \ "usbtty=cdc_acm\0" \ - "stdin=usbtty,serial,vga\0" \ + "stdin=usbtty,serial,keyboard\0" \ "stdout=usbtty,serial,vga\0" \ "stderr=usbtty,serial,vga\0" \ "slide=gpio input " __stringify(GPIO_SLIDE) "\0" \ |