]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Blackfin: bf537-stamp nand: fix more style errors in previous commit
authorMike Frysinger <vapier@gentoo.org>
Wed, 9 Apr 2008 06:29:18 +0000 (02:29 -0400)
committerMike Frysinger <vapier@gentoo.org>
Wed, 28 Jan 2009 18:26:13 +0000 (13:26 -0500)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
board/bf537-stamp/nand.c

index 20a7d0ef4c62e81ac20d8c32bbe715e892930bbc..2866834589d1af3535a64ee5f59916cc3bca1d61 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * (C) Copyright 2006 Aubrey.Li, aubrey.li@analog.com
+ * Copyright (c) 2006-2007 Analog Devices Inc.
  *
  * See file CREDITS for list of people who contributed to this
  * project.
@@ -43,11 +43,11 @@ static void bfin_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
        u32 IO_ADDR_W = (u32) this->IO_ADDR_W;
 
        if (ctrl & NAND_CTRL_CHANGE) {
-               if( ctrl & NAND_CLE )
+               if (ctrl & NAND_CLE)
                        IO_ADDR_W = CONFIG_SYS_NAND_BASE + BFIN_NAND_CLE;
                else
                        IO_ADDR_W = CONFIG_SYS_NAND_BASE;
-               if( ctrl & NAND_ALE )
+               if (ctrl & NAND_ALE)
                        IO_ADDR_W = CONFIG_SYS_NAND_BASE + BFIN_NAND_ALE;
                else
                        IO_ADDR_W = CONFIG_SYS_NAND_BASE;