diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-29 10:58:09 -0400 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-09-23 15:13:32 -0400 |
commit | 22bfc979d38f57d5b10d141990175d8fc47f6775 (patch) | |
tree | 2ca6fe2927f0c5b8bcec7052e0b7770da2ada075 /drivers/mmc | |
parent | 17b759aff916b4d02721e75ce5ed82b1903e5bd6 (diff) |
make struct sdio_dev_attrs[] static
On Wed, Jul 25, 2007 at 04:03:04AM -0700, Andrew Morton wrote:
>...
> Changes since 2.6.22-rc6-mm1:
>...
> git-mmc.patch
>...
> git trees
>...
sdio_dev_attrs[] can become static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/sdio_bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/sdio_bus.c b/drivers/mmc/core/sdio_bus.c index 240724454914..d229020db4a2 100644 --- a/drivers/mmc/core/sdio_bus.c +++ b/drivers/mmc/core/sdio_bus.c | |||
@@ -46,7 +46,7 @@ static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, | |||
46 | func->class, func->vendor, func->device); | 46 | func->class, func->vendor, func->device); |
47 | } | 47 | } |
48 | 48 | ||
49 | struct device_attribute sdio_dev_attrs[] = { | 49 | static struct device_attribute sdio_dev_attrs[] = { |
50 | __ATTR_RO(class), | 50 | __ATTR_RO(class), |
51 | __ATTR_RO(vendor), | 51 | __ATTR_RO(vendor), |
52 | __ATTR_RO(device), | 52 | __ATTR_RO(device), |