summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/core/sd.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-03-08 15:05:27 +0800
committerChris Ball <chris@printf.net>2014-04-22 07:06:38 -0400
commitd1e58212caa4fdd95dfb003ba6e90aa0c9c1ac03 (patch)
tree24dd8d4f2564adcd8f2fb1c118afda35b1ad9ef2 /drivers/mmc/core/sd.c
parent297d40560bc8f474adbb43178e3118321fa702ea (diff)
downloadop-kernel-dev-d1e58212caa4fdd95dfb003ba6e90aa0c9c1ac03.zip
op-kernel-dev-d1e58212caa4fdd95dfb003ba6e90aa0c9c1ac03.tar.gz
mmc: Convert to use ATTRIBUTE_GROUPS
Use new ATTRIBUTE_GROUPS macro to declare attribute groups. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Chris Ball <chris@printf.net>
Diffstat (limited to 'drivers/mmc/core/sd.c')
-rw-r--r--drivers/mmc/core/sd.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
index 2dd359d..aef5157 100644
--- a/drivers/mmc/core/sd.c
+++ b/drivers/mmc/core/sd.c
@@ -707,18 +707,10 @@ static struct attribute *sd_std_attrs[] = {
&dev_attr_serial.attr,
NULL,
};
-
-static struct attribute_group sd_std_attr_group = {
- .attrs = sd_std_attrs,
-};
-
-static const struct attribute_group *sd_attr_groups[] = {
- &sd_std_attr_group,
- NULL,
-};
+ATTRIBUTE_GROUPS(sd_std);
struct device_type sd_type = {
- .groups = sd_attr_groups,
+ .groups = sd_std_groups,
};
/*
OpenPOWER on IntegriCloud