Skip to content

Commit

Permalink
[MIPS] DDB5477: Fix unused variable warning.
Browse files Browse the repository at this point in the history
    
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Nov 17, 2005
1 parent 1621201 commit d93efab
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions arch/mips/ddb5xxx/ddb5477/lcd44780.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void lcd44780_data(unsigned char c)

void lcd44780_puts(const char* s)
{
int i,j;
int j;
int pos = 0;

lcd44780_command(LCD44780_CLEAR);
Expand All @@ -76,8 +76,12 @@ void lcd44780_puts(const char* s)
}
}
#ifdef LCD44780_PUTS_PAUSE
for(i = 1; i < 2000; i++)
lcd44780_wait();
{
int i;

for(i = 1; i < 2000; i++)
lcd44780_wait();
}
#endif
}

Expand Down

0 comments on commit d93efab

Please sign in to comment.