Convert the whole codebase to UTF-8, except docs/COMMITTERS and tools/creative.c, which need checking.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17369 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nicolas Pennequin 2008-05-05 10:32:46 +00:00
parent ef5fa8eaf5
commit 357ffb3c46
109 changed files with 408 additions and 408 deletions

View file

@ -271,7 +271,7 @@ void send_command_to_pic(unsigned char in, unsigned char* out,
IO_INTC_EINT1 &= ~INTR_EINT1_EXT0;
/* Clear EXT0 interrupt */
IO_INTC_IRQ1 = INTR_IRQ1_EXT0;
/* Write command to I²C */
/* Write command to I²C */
restart:
i2c_write(PIC_ADR, &in, 1);
/* Wait for PIC */
@ -283,7 +283,7 @@ void send_command_to_pic(unsigned char in, unsigned char* out,
if(i > 50)
goto restart;
}
/* Read return from I²C */
/* Read return from I²C */
i2c_read(PIC_ADR, out, length);
/* Re-enable GIO0 interrupt */
IO_INTC_EINT1 |= INTR_EINT1_EXT0;