diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-14 14:20:30 (GMT) |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-04-22 14:56:16 (GMT) |
commit | eb8e31831a603f285ee9e6ffc59d5366e0ff8a8e (patch) | |
tree | 2ba61bff7a501aeecdb993f29e45332e92ef2ea5 /drivers/mtd | |
parent | 5ce45d50056e20aca50f19229d8a7e003569ad26 (diff) | |
download | linux-fsl-qoriq-eb8e31831a603f285ee9e6ffc59d5366e0ff8a8e.tar.xz |
[MTD] [NOR] cfi_cmdset_0020.c: make a function static
This patch makes the needlessly global cfi_staa_erase_varsize() static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/chips/cfi_cmdset_0020.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/chips/cfi_cmdset_0020.c b/drivers/mtd/chips/cfi_cmdset_0020.c index 669caeb..1b720cc 100644 --- a/drivers/mtd/chips/cfi_cmdset_0020.c +++ b/drivers/mtd/chips/cfi_cmdset_0020.c @@ -893,7 +893,8 @@ retry: return ret; } -int cfi_staa_erase_varsize(struct mtd_info *mtd, struct erase_info *instr) +static int cfi_staa_erase_varsize(struct mtd_info *mtd, + struct erase_info *instr) { struct map_info *map = mtd->priv; struct cfi_private *cfi = map->fldrv_priv; unsigned long adr, len; |