diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-11-13 16:31:36 +0900 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-11-13 16:31:36 +0900 |
| commit | 7fa8fb124d5339a4e0d20d0a97a6b63731ce97d3 (patch) | |
| tree | 5761a78996b2f07f160c7a1e91b3a0f387272c4c /tifm-convert-bus-code-to-use-dev_groups.patch | |
| parent | 52894f7f35f3c6ad2b3362f021cdee69797d7a79 (diff) | |
| download | patches-7fa8fb124d5339a4e0d20d0a97a6b63731ce97d3.tar.gz | |
remove patches upstream now
Diffstat (limited to 'tifm-convert-bus-code-to-use-dev_groups.patch')
| -rw-r--r-- | tifm-convert-bus-code-to-use-dev_groups.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/tifm-convert-bus-code-to-use-dev_groups.patch b/tifm-convert-bus-code-to-use-dev_groups.patch deleted file mode 100644 index b8cf0af7f089dc..00000000000000 --- a/tifm-convert-bus-code-to-use-dev_groups.patch +++ /dev/null @@ -1,41 +0,0 @@ -From foo@baz Mon Oct 7 18:13:26 PDT 2013 -Date: Mon, 07 Oct 2013 18:13:26 -0700 -To: Greg KH <gregkh@linuxfoundation.org> -From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Subject: tifm: convert bus code to use dev_groups - -The dev_attrs field of struct bus_type is going away soon, dev_groups -should be used instead. This converts the tifm bus code to use the -correct field. - -Cc: Alex Dubov <oakad@yahoo.com> -Cc: Arnd Bergmann <arnd@arndb.de> -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> ---- - drivers/misc/tifm_core.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - ---- a/drivers/misc/tifm_core.c -+++ b/drivers/misc/tifm_core.c -@@ -145,15 +145,17 @@ static ssize_t type_show(struct device * - struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev); - return sprintf(buf, "%x", sock->type); - } -+static DEVICE_ATTR_RO(type); - --static struct device_attribute tifm_dev_attrs[] = { -- __ATTR(type, S_IRUGO, type_show, NULL), -- __ATTR_NULL -+static struct attribute *tifm_dev_attrs[] = { -+ &dev_attr_type.attr, -+ NULL, - }; -+ATTRIBUTE_GROUPS(tifm_dev); - - static struct bus_type tifm_bus_type = { - .name = "tifm", -- .dev_attrs = tifm_dev_attrs, -+ .dev_groups = tifm_dev_groups, - .match = tifm_bus_match, - .uevent = tifm_uevent, - .probe = tifm_device_probe, |
