aboutsummaryrefslogtreecommitdiffstats
path: root/d15.patch
diff options
Diffstat (limited to 'd15.patch')
-rw-r--r--d15.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/d15.patch b/d15.patch
new file mode 100644
index 00000000000000..df935a57f83bf8
--- /dev/null
+++ b/d15.patch
@@ -0,0 +1,26 @@
+---
+ drivers/s390/net/ctcm_main.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+
+--- a/drivers/s390/net/ctcm_main.c
++++ b/drivers/s390/net/ctcm_main.c
+@@ -1771,15 +1771,15 @@ static struct ccwgroup_driver ctcm_group
+ .restore = ctcm_pm_resume,
+ };
+
+-static ssize_t ctcm_driver_group_store(struct device_driver *ddrv,
+- const char *buf, size_t count)
++static ssize_t group_store(struct device_driver *ddrv, const char *buf,
++ size_t count)
+ {
+ int err;
+
+ err = ccwgroup_create_dev(ctcm_root_dev, &ctcm_group_driver, 2, buf);
+ return err ? err : count;
+ }
+-static DRIVER_ATTR(group, 0200, NULL, ctcm_driver_group_store);
++static DRIVER_ATTR_WO(group);
+
+ static struct attribute *ctcm_drv_attrs[] = {
+ &driver_attr_group.attr,