NOR/DRIVERS: review scope of functions
authorAntonio Borneo <borneo.antonio@gmail.com>
Sat, 10 Apr 2010 11:38:15 +0000 (19:38 +0800)
committerAntonio Borneo <borneo.antonio@gmail.com>
Sat, 10 Apr 2010 11:38:15 +0000 (19:38 +0800)
Add "static" qualifier to private functions.
Remove unused "extern" in src/ecosboard.c

Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
src/ecosboard.c
src/flash/nor/drivers.c

index 4249e1b8c6e157bf80b5d124e480cf9104533e15..1e3152e76f06ba89598700e8df59d25252cf0bba 100644 (file)
@@ -99,9 +99,6 @@ static bool writeLog = true;
 
 char hwaddr[512];
 
-
-extern struct flash_driver *flash_drivers[];
-
 #ifdef CYGPKG_PROFILE_GPROF
 #include <cyg/profile/profile.h>
 
index 7f71d83a892428d202503a73fd4da4963260821e..3e09a0045a6eeef8e3a0bb86956a71a2d8f25d1c 100644 (file)
@@ -44,7 +44,7 @@ extern struct flash_driver faux_flash;
  * The list of built-in flash drivers.
  * @todo Make this dynamically extendable with loadable modules.
  */
-struct flash_driver *flash_drivers[] = {
+static struct flash_driver *flash_drivers[] = {
        &lpc2000_flash,
        &lpc288x_flash,
        &lpc2900_flash,