diff options
author | Stelian Pop <stelian@popies.net> | 2008-05-13 17:31:24 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-05-13 21:49:04 +0200 |
commit | 54694a91428f6c3280fe1ee0923488a1e7e8dbc4 (patch) | |
tree | 8158f19f09930c1fc97634df21749615d1bc7d32 /common | |
parent | 67e3beb52c320b0a31cf030716c99392cde2d532 (diff) |
Cleanup nand_info[] declaration.
The nand_info array is declared as extern in several .c files.
Those days, nand.h contains a reference to the array, so there is
no need to declare it elsewhere.
Signed-off-by: Stelian Pop <stelian@popies.net>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_nand.c | 2 | ||||
-rw-r--r-- | common/env_nand.c | 3 | ||||
-rw-r--r-- | common/lcd.c | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/common/cmd_nand.c b/common/cmd_nand.c index 37eb41b20e6..37198d21e8c 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -37,8 +37,6 @@ int find_dev_and_part(const char *id, struct mtd_device **dev, u8 *part_num, struct part_info **part); #endif -extern nand_info_t nand_info[]; /* info for NAND chips */ - static int nand_dump_oob(nand_info_t *nand, ulong off) { return 0; diff --git a/common/env_nand.c b/common/env_nand.c index 49742f5bfb5..f12674d82d5 100644 --- a/common/env_nand.c +++ b/common/env_nand.c @@ -57,9 +57,6 @@ int nand_legacy_rw (struct nand_chip* nand, int cmd, size_t start, size_t len, size_t * retlen, u_char * buf); -/* info for NAND chips, defined in drivers/mtd/nand/nand.c */ -extern nand_info_t nand_info[]; - /* references to names in env_common.c */ extern uchar default_environment[]; extern int default_environment_size; diff --git a/common/lcd.c b/common/lcd.c index 2178f12d5af..ebf377aa89d 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -53,7 +53,6 @@ #if defined(CONFIG_ATMEL_LCD) #include <atmel_lcdc.h> #include <nand.h> -extern nand_info_t nand_info[]; #endif #ifdef CONFIG_LCD |