diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-11-03 16:05:34 -0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-11-03 16:05:34 -0800 |
| commit | 52894f7f35f3c6ad2b3362f021cdee69797d7a79 (patch) | |
| tree | 798f5b8bfb2a5b23e49fb68002f660b694c4e672 /p13.patch | |
| parent | ad2f0a874ca11c77885ea119cc80fe40c7e29eb3 (diff) | |
| download | patches-52894f7f35f3c6ad2b3362f021cdee69797d7a79.tar.gz | |
renames and a new patch
Diffstat (limited to 'p13.patch')
| -rw-r--r-- | p13.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/p13.patch b/p13.patch deleted file mode 100644 index 90e12654f8604a..00000000000000 --- a/p13.patch +++ /dev/null @@ -1,45 +0,0 @@ -From foo@baz Mon Oct 7 18:11:02 PDT 2013 -Date: Mon, 07 Oct 2013 18:11:02 -0700 -To: Greg KH <gregkh@linuxfoundation.org> -From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Subject: spi: 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 spi bus code to use the -correct field. - -Cc: Mark Brown <broonie@kernel.org> -Cc: <linux-spi@vger.kernel.org> -Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> ---- - drivers/spi/spi.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - ---- a/drivers/spi/spi.c -+++ b/drivers/spi/spi.c -@@ -58,11 +58,13 @@ modalias_show(struct device *dev, struct - - return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias); - } -+static DEVICE_ATTR_RO(modalias); - --static struct device_attribute spi_dev_attrs[] = { -- __ATTR_RO(modalias), -- __ATTR_NULL, -+static struct attribute *spi_dev_attrs[] = { -+ &dev_attr_modalias.attr, -+ NULL, - }; -+ATTRIBUTE_GROUPS(spi_dev); - - /* modalias support makes "modprobe $MODALIAS" new-style hotplug work, - * and the sysfs version makes coldplug work too. -@@ -229,7 +231,7 @@ static const struct dev_pm_ops spi_pm = - - struct bus_type spi_bus_type = { - .name = "spi", -- .dev_attrs = spi_dev_attrs, -+ .dev_groups = spi_dev_groups, - .match = spi_match_device, - .uevent = spi_uevent, - .pm = &spi_pm, |
