diff options
| author | wdenk <wdenk> | 2002-12-03 21:28:10 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2002-12-03 21:28:10 +0000 | 
| commit | a6c7ad2f65afaa717ba19cbf9d8d138b5f10ccf9 (patch) | |
| tree | 45512cd627310dd322ea38fc9f63109560276475 /common/devices.c | |
| parent | ea909b7604306a400ee3abf57e2fa7b2dde5dde1 (diff) | |
| download | olio-uboot-2014.01-a6c7ad2f65afaa717ba19cbf9d8d138b5f10ccf9.tar.xz olio-uboot-2014.01-a6c7ad2f65afaa717ba19cbf9d8d138b5f10ccf9.zip | |
* Fix startup problems with VFD display on TRABLABEL_2002_12_03_2230
* Patch by Pierre Aubert, 20 Nov 2002
  Add driver for Epson SED13806 graphic controller.
  Add support for BMP logos in cfb_console driver.
Diffstat (limited to 'common/devices.c')
| -rw-r--r-- | common/devices.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/devices.c b/common/devices.c index 7489eac41..8bd0e64e3 100644 --- a/common/devices.c +++ b/common/devices.c @@ -177,7 +177,7 @@ int devices_init (void)  #ifdef CONFIG_LCD  	drv_lcd_init ();  #endif -#ifdef CONFIG_VIDEO +#if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE)  	drv_video_init ();  #endif  #ifdef CONFIG_WL_4PPM_KEYBOARD |