Linux 4.8-rc8
[linux/fpc-iii.git] / arch / xtensa / platforms / xtfpga / include / platform / lcd.h
blob4c8541ed11396e52bd570cb2cbd0d7bda1782f00
1 /*
2 * arch/xtensa/platform/xtavnet/include/platform/lcd.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (C) 2001, 2006 Tensilica Inc.
9 */
11 #ifndef __XTENSA_XTAVNET_LCD_H
12 #define __XTENSA_XTAVNET_LCD_H
14 #ifdef CONFIG_XTFPGA_LCD
15 /* Display string STR at position POS on the LCD. */
16 void lcd_disp_at_pos(char *str, unsigned char pos);
18 /* Shift the contents of the LCD display left or right. */
19 void lcd_shiftleft(void);
20 void lcd_shiftright(void);
21 #else
22 static inline void lcd_disp_at_pos(char *str, unsigned char pos)
26 static inline void lcd_shiftleft(void)
30 static inline void lcd_shiftright(void)
33 #endif
35 #endif