1
0
Fork 0

sparc: Fix whitespace in cpu/leon2/cpu_init.c

Signed-off-by: Francois Retief <fgretief@spaceteq.co.za>
utp
Francois Retief 2015-11-21 17:07:48 +02:00
parent c2b37a0d55
commit a5b629a33e
1 changed files with 5 additions and 5 deletions

View File

@ -50,17 +50,17 @@ void cpu_init_f(void)
/* cache */
/* I/O port setup */
/* I/O port setup */
#ifdef LEON2_IO_PORT_DIR
leon2->PIO_Direction = LEON2_IO_PORT_DIR;
leon2->PIO_Direction = LEON2_IO_PORT_DIR;
#endif
#ifdef LEON2_IO_PORT_DATA
leon2->PIO_Data = LEON2_IO_PORT_DATA;
leon2->PIO_Data = LEON2_IO_PORT_DATA;
#endif
#ifdef LEON2_IO_PORT_INT
leon2->PIO_Interrupt = LEON2_IO_PORT_INT;
leon2->PIO_Interrupt = LEON2_IO_PORT_INT;
#else
leon2->PIO_Interrupt = 0;
leon2->PIO_Interrupt = 0;
#endif
}