lcd-common/scroll_engine: Remove unused functions lcd_puts_scroll_offset() and lcd_puts_scroll_style_offset().

Change-Id: Ia84ae88020d06a1cb634942ab5e635fd5d10ac66
This commit is contained in:
Thomas Martitz 2013-04-11 12:07:06 +02:00
parent 2ef9aa51f3
commit a422604435
6 changed files with 3 additions and 37 deletions

View file

@ -624,19 +624,7 @@ void LCDFN(puts_scroll)(int x, int y, const unsigned char *string)
void LCDFN(puts_scroll_style)(int x, int y, const unsigned char *string,
int style)
{
LCDFN(puts_scroll_style_offset)(x, y, string, style, 0);
}
void LCDFN(puts_scroll_offset)(int x, int y, const unsigned char *string,
int offset)
{
LCDFN(puts_scroll_style_offset)(x, y, string, STYLE_DEFAULT, offset);
}
void LCDFN(puts_scroll_style_offset)(int x, int y, const unsigned char *string,
int style, int x_offset)
{
LCDFN(puts_scroll_style_xyoffset)(x, y, string, style, x_offset, 0);
LCDFN(puts_scroll_style_xyoffset)(x, y, string, style, 0, 0);
}
#if !defined(HAVE_LCD_COLOR) || !defined(MAIN_LCD)