diff options
author | H Hartley Sweeten <[email protected]> | 2009-08-06 16:05:32 -0700 |
---|---|---|
committer | David Woodhouse <[email protected]> | 2009-09-04 09:40:46 +0100 |
commit | fca910883324d437a24d447b08f524fa19261a94 (patch) | |
tree | fcd65b0c522bf0efc0d11945a09cec7720af5c6d | |
parent | 0acfe530a2be9192861b84566625ba9b95703226 (diff) |
mtd: make few symbols static
Make mtd_group and mtd_groups static since they are only used in this
file.
[Amended by Artem Bityutskiy]
Signed-off-by: H Hartley Sweeten <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Artem Bityutskiy <[email protected]>
Signed-off-by: David Woodhouse <[email protected]>
-rw-r--r-- | drivers/mtd/mtdcore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c index 00ebf7af7467..3f559c0f1879 100644 --- a/drivers/mtd/mtdcore.c +++ b/drivers/mtd/mtdcore.c @@ -213,11 +213,11 @@ static struct attribute *mtd_attrs[] = { NULL, }; -struct attribute_group mtd_group = { +static struct attribute_group mtd_group = { .attrs = mtd_attrs, }; -struct attribute_group *mtd_groups[] = { +static struct attribute_group *mtd_groups[] = { &mtd_group, NULL, }; |