diff options
| author | Wolfgang Denk <wd@nyx.denx.de> | 2006-03-06 13:03:37 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@nyx.denx.de> | 2006-03-06 13:03:37 +0100 | 
| commit | bfc81252c0de3bfcf92c7c35bc04341fb33e4e4e (patch) | |
| tree | d2b832bf54040b49a8518b63620f2774398fa8d5 /board/dave/PPChameleonEVB/nand.c | |
| parent | 4e3ccd26925e5ada78dd89779838f052dffe3e67 (diff) | |
| download | olio-uboot-2014.01-bfc81252c0de3bfcf92c7c35bc04341fb33e4e4e.tar.xz olio-uboot-2014.01-bfc81252c0de3bfcf92c7c35bc04341fb33e4e4e.zip | |
Minor code cleanup
Diffstat (limited to 'board/dave/PPChameleonEVB/nand.c')
| -rw-r--r-- | board/dave/PPChameleonEVB/nand.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/dave/PPChameleonEVB/nand.c b/board/dave/PPChameleonEVB/nand.c index 61edc787f..40a827c3e 100644 --- a/board/dave/PPChameleonEVB/nand.c +++ b/board/dave/PPChameleonEVB/nand.c @@ -81,7 +81,7 @@ static int ppchameleonevb_device_ready(struct mtd_info *mtdinfo)  		break;  	} -        if (in32(GPIO0_IR) & rb_gpio_pin) +	if (in32(GPIO0_IR) & rb_gpio_pin)  		return 1;  	return 0;  } |