diff options
| author | David Brownell <dbrownell@users.sourceforge.net> | 2009-06-24 10:06:31 -0700 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-09-15 09:50:47 -0700 | 
| commit | a4dbd6740df0872cdf0a86841f75beec8381964d (patch) | |
| tree | 1093687845d89f8397d61e7df1ad8546a5a25225 /drivers/mmc/core/mmc.c | |
| parent | 5b2ea2f10dbb2fa91d8033993000f8664309395f (diff) | |
| download | olio-linux-3.10-a4dbd6740df0872cdf0a86841f75beec8381964d.tar.xz olio-linux-3.10-a4dbd6740df0872cdf0a86841f75beec8381964d.zip  | |
driver model: constify attribute groups
Let attribute group vectors be declared "const".  We'd
like to let most attribute metadata live in read-only
sections... this is a start.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/mmc/core/mmc.c')
| -rw-r--r-- | drivers/mmc/core/mmc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c index 06084dbf127..2fb9d5f271e 100644 --- a/drivers/mmc/core/mmc.c +++ b/drivers/mmc/core/mmc.c @@ -276,7 +276,7 @@ static struct attribute_group mmc_std_attr_group = {  	.attrs = mmc_std_attrs,  }; -static struct attribute_group *mmc_attr_groups[] = { +static const struct attribute_group *mmc_attr_groups[] = {  	&mmc_std_attr_group,  	NULL,  };  |