diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2008-01-17 12:48:00 -0600 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-01-17 14:01:59 -0600 |
commit | 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5 (patch) | |
tree | 55ad463e8180bb5bc3a461440bd419ab37fea03d /board/freescale/mpc8349emds | |
parent | 80ddd22626d321a772ebfba304eb7830cb4f6bac (diff) | |
download | u-boot-imx-2956acd5ef93a498337f8ac2ec6ae6a77d491dc5.zip u-boot-imx-2956acd5ef93a498337f8ac2ec6ae6a77d491dc5.tar.gz u-boot-imx-2956acd5ef93a498337f8ac2ec6ae6a77d491dc5.tar.bz2 |
codingstyle cleanup for spi driver
..and rm unused CONFIG_FSL_SPI define
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board/freescale/mpc8349emds')
-rw-r--r-- | board/freescale/mpc8349emds/mpc8349emds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mpc8349emds/mpc8349emds.c b/board/freescale/mpc8349emds/mpc8349emds.c index 3fb2a45..9f4ac8e 100644 --- a/board/freescale/mpc8349emds/mpc8349emds.c +++ b/board/freescale/mpc8349emds/mpc8349emds.c @@ -263,7 +263,7 @@ void spi_eeprom_chipsel(int cs) { volatile gpio83xx_t *iopd = &((immap_t *)CFG_IMMR)->gpio[0]; - if(cs) + if (cs) iopd->dat &= ~SPI_CS_MASK; else iopd->dat |= SPI_CS_MASK; |