diff options
author | Dmitri Vorobiev <dmitri.vorobiev@movial.fi> | 2008-11-25 01:54:55 +0100 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-12-10 14:01:02 +0100 |
commit | baa0f0fc5f0960937433bf3a17e5c78b88e3add5 (patch) | |
tree | 0f015662b3026c97f55fa4c584225699345a8081 | |
parent | [MTD] Make init_flagadm function static (diff) | |
download | linux-baa0f0fc5f0960937433bf3a17e5c78b88e3add5.tar.xz linux-baa0f0fc5f0960937433bf3a17e5c78b88e3add5.zip |
[MTD] Make init_dbox2_flash static
The symbol init_dbox2_flash is not used outside of the file
drivers/mtd/maps/dbox2-flash.c, so make it static.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r-- | drivers/mtd/maps/dbox2-flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/dbox2-flash.c b/drivers/mtd/maps/dbox2-flash.c index e115667bf1d0..cfacfa6f45dd 100644 --- a/drivers/mtd/maps/dbox2-flash.c +++ b/drivers/mtd/maps/dbox2-flash.c @@ -69,7 +69,7 @@ struct map_info dbox2_flash_map = { .phys = WINDOW_ADDR, }; -int __init init_dbox2_flash(void) +static int __init init_dbox2_flash(void) { printk(KERN_NOTICE "D-Box 2 flash driver (size->0x%X mem->0x%X)\n", WINDOW_SIZE, WINDOW_ADDR); dbox2_flash_map.virt = ioremap(WINDOW_ADDR, WINDOW_SIZE); |