| Submitter | Dmitri Vorobiev |
|---|---|
| Date | Nov. 25, 2008, 12:55 a.m. |
| Message ID | <1227574511-23879-17-git-send-email-dmitri.vorobiev@movial.fi> |
| Download | mbox | patch |
| Permalink | /patch/11724/ |
| State | Accepted |
| Headers | show |
Comments
Patch
diff --git a/drivers/mtd/maps/sharpsl-flash.c b/drivers/mtd/maps/sharpsl-flash.c index 026eab0..b392f09 100644 --- a/drivers/mtd/maps/sharpsl-flash.c +++ b/drivers/mtd/maps/sharpsl-flash.c @@ -47,7 +47,7 @@ static struct mtd_partition sharpsl_partitions[1] = { } }; -int __init init_sharpsl(void) +static int __init init_sharpsl(void) { struct mtd_partition *parts; int nb_parts = 0;
The function init_sharpsl is needlessly defined global. Make it static by adding the needed keyword to the file drivers/mtd/maps/sharpsl-flash.c, where the function is defined. Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi> --- drivers/mtd/maps/sharpsl-flash.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)