diff options
| -rw-r--r-- | board/davinci/ea20/ea20.c | 2 | ||||
| -rw-r--r-- | drivers/video/da8xx-fb.c | 2 | ||||
| -rw-r--r-- | drivers/video/da8xx-fb.h (renamed from arch/arm/include/asm/arch-davinci/da8xx-fb.h) | 3 | 
3 files changed, 4 insertions, 3 deletions
| diff --git a/board/davinci/ea20/ea20.c b/board/davinci/ea20/ea20.c index c78699779..89ee079ea 100644 --- a/board/davinci/ea20/ea20.c +++ b/board/davinci/ea20/ea20.c @@ -24,7 +24,7 @@  #include <asm/io.h>  #include <asm/arch/davinci_misc.h>  #include <asm/gpio.h> -#include <asm/arch/da8xx-fb.h> +#include "../../../drivers/video/da8xx-fb.h"  DECLARE_GLOBAL_DATA_PTR; diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c index 373991dde..dd7ce3606 100644 --- a/drivers/video/da8xx-fb.c +++ b/drivers/video/da8xx-fb.c @@ -24,7 +24,7 @@  #include <asm/arch/hardware.h>  #include "videomodes.h" -#include <asm/arch/da8xx-fb.h> +#include "da8xx-fb.h"  #define DRIVER_NAME "da8xx_lcdc" diff --git a/arch/arm/include/asm/arch-davinci/da8xx-fb.h b/drivers/video/da8xx-fb.h index c115034f0..f48fdfdc4 100644 --- a/arch/arm/include/asm/arch-davinci/da8xx-fb.h +++ b/drivers/video/da8xx-fb.h @@ -17,7 +17,8 @@  #define DA8XX_FB_H  enum panel_type { -	QVGA = 0 +	QVGA = 0, +	WVGA  };  enum panel_shade { |