mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
lcd: remove unused lcd_puts_xy
prevents a clang warning that the function is never used. cc: agust@denx.de Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
This commit is contained in:
parent
e6e9cff2dc
commit
072f210a0d
1 changed files with 0 additions and 10 deletions
10
common/lcd.c
10
common/lcd.c
|
@ -110,7 +110,6 @@
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
static void lcd_drawchars(ushort x, ushort y, uchar *str, int count);
|
static void lcd_drawchars(ushort x, ushort y, uchar *str, int count);
|
||||||
static inline void lcd_puts_xy(ushort x, ushort y, uchar *s);
|
|
||||||
static inline void lcd_putc_xy(ushort x, ushort y, uchar c);
|
static inline void lcd_putc_xy(ushort x, ushort y, uchar c);
|
||||||
|
|
||||||
static int lcd_init(void *lcdbase);
|
static int lcd_init(void *lcdbase);
|
||||||
|
@ -373,15 +372,6 @@ static void lcd_drawchars(ushort x, ushort y, uchar *str, int count)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
static inline void lcd_puts_xy(ushort x, ushort y, uchar *s)
|
|
||||||
{
|
|
||||||
lcd_drawchars(x, y, s, strlen((char *)s));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
static inline void lcd_putc_xy(ushort x, ushort y, uchar c)
|
static inline void lcd_putc_xy(ushort x, ushort y, uchar c)
|
||||||
{
|
{
|
||||||
lcd_drawchars(x, y, &c, 1);
|
lcd_drawchars(x, y, &c, 1);
|
||||||
|
|
Loading…
Add table
Reference in a new issue