[MAC80211]: remove some unnecessary includes
[pohmelfs.git] / drivers / mmc / core / sysfs.c
blob00a97e70f91425a57b1fc28628a5884ff93c285d
1 /*
2 * linux/drivers/mmc/core/sysfs.c
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
5 * Copyright 2007 Pierre Ossman
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * MMC sysfs/driver model support.
13 #include <linux/device.h>
15 #include <linux/mmc/card.h>
17 #include "sysfs.h"
19 int mmc_add_attrs(struct mmc_card *card, struct device_attribute *attrs)
21 int error = 0;
22 int i;
24 for (i = 0; attr_name(attrs[i]); i++) {
25 error = device_create_file(&card->dev, &attrs[i]);
26 if (error) {
27 while (--i >= 0)
28 device_remove_file(&card->dev, &attrs[i]);
29 break;
33 return error;
36 void mmc_remove_attrs(struct mmc_card *card, struct device_attribute *attrs)
38 int i;
40 for (i = 0; attr_name(attrs[i]); i++)
41 device_remove_file(&card->dev, &attrs[i]);