Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d93efab8 authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] DDB5477: Fix unused variable warning.

parent 16212017
Loading
Loading
Loading
Loading
+7 −3
Original line number Original line Diff line number Diff line
@@ -55,7 +55,7 @@ void lcd44780_data(unsigned char c)


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


	lcd44780_command(LCD44780_CLEAR);
	lcd44780_command(LCD44780_CLEAR);
@@ -76,8 +76,12 @@ void lcd44780_puts(const char* s)
		}
		}
	}
	}
#ifdef LCD44780_PUTS_PAUSE
#ifdef LCD44780_PUTS_PAUSE
	{
		int i;

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