X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Flcd.h;h=4f180692781183d85a1cc40db8d671af98dc58ea;hb=08517bcd7c8970ab92749a67315e30b10116cc61;hp=9a4c0da5baca71dc2a9b8513886e80611759c05b;hpb=3c1ecde402ca5ba851ce846ceeeffc6e5ab30490;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/lcd.h b/include/lcd.h index 9a4c0da..4f18069 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -40,10 +40,7 @@ ulong lcd_setmem(ulong addr); */ void lcd_set_flush_dcache(int flush); -#if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \ - defined CONFIG_CPU_MONAHANS -#include -#elif defined(CONFIG_ATMEL_LCD) || defined(CONFIG_ATMEL_HLCD) +#if defined(CONFIG_ATMEL_LCD) || defined(CONFIG_ATMEL_HLCD) #include #elif defined(CONFIG_EXYNOS_FB) #include @@ -76,42 +73,42 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y); /** * Get the width of the LCD in pixels * - * @return width of LCD in pixels + * Return: width of LCD in pixels */ int lcd_get_pixel_width(void); /** * Get the height of the LCD in pixels * - * @return height of LCD in pixels + * Return: height of LCD in pixels */ int lcd_get_pixel_height(void); /** * Get the number of text lines/rows on the LCD * - * @return number of rows + * Return: number of rows */ int lcd_get_screen_rows(void); /** * Get the number of text columns on the LCD * - * @return number of columns + * Return: number of columns */ int lcd_get_screen_columns(void); /** * Get the background color of the LCD * - * @return background color value + * Return: background color value */ int lcd_getbgcolor(void); /** * Get the foreground color of the LCD * - * @return foreground color value + * Return: foreground color value */ int lcd_getfgcolor(void);