diff options
author | stroese <stroese> | 2004-12-16 17:40:30 +0000 |
---|---|---|
committer | stroese <stroese> | 2004-12-16 17:40:30 +0000 |
commit | fa838874cf29a18ce11371c048358f683c74ff0e (patch) | |
tree | acad1f819c05d535086a6de1489002bfcd9c3658 | |
parent | 1cdf5d92cfa67b18c2b5e2557d5a47f8adf12166 (diff) | |
download | blackbird-obmc-uboot-fa838874cf29a18ce11371c048358f683c74ff0e.tar.gz blackbird-obmc-uboot-fa838874cf29a18ce11371c048358f683c74ff0e.zip |
remove "static" from "ide_dev_desc" to use it from external code
-rw-r--r-- | common/cmd_ide.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_ide.c b/common/cmd_ide.c index 9e50599bf6..77a0494016 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -140,7 +140,7 @@ static int ide_bus_ok[CFG_IDE_MAXBUS]; static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,}; #endif -static block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE]; +block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE]; /* ------------------------------------------------------------------------- */ #ifdef CONFIG_IDE_LED |