* [PATCH 00/15] drivers: make device_type const
@ 2017-08-19 8:22 Bhumika Goyal
2017-08-19 8:22 ` [PATCH 01/15] EDAC: " Bhumika Goyal
` (9 more replies)
0 siblings, 10 replies; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make device_type const. Done using Coccinelle.
Bhumika Goyal (15):
EDAC: make device_type const
drm: make device_type const
[media] i2c: make device_type const
[media] rc: make device_type const
mei: make device_type const
mtd: make device_type const
mux: make device_type const
PCI: make device_type const
phy: tegra: make device_type const
platform/x86: wmi: make device_type const
remoteproc: make device_type const
s390/zcrypt: make device_type const
scsi: make device_type const
staging: greybus: make device_type const
usb: make device_type const
drivers/edac/edac_mc_sysfs.c | 8 ++++----
drivers/edac/i7core_edac.c | 4 ++--
drivers/gpu/drm/drm_sysfs.c | 2 +-
drivers/gpu/drm/ttm/ttm_module.c | 2 +-
drivers/media/i2c/soc_camera/mt9t031.c | 2 +-
drivers/media/rc/rc-main.c | 2 +-
drivers/misc/mei/bus.c | 2 +-
drivers/mtd/mtdcore.c | 2 +-
drivers/mux/mux-core.c | 2 +-
drivers/pci/endpoint/pci-epf-core.c | 4 ++--
drivers/phy/tegra/xusb.c | 4 ++--
drivers/platform/x86/wmi.c | 6 +++---
drivers/remoteproc/remoteproc_core.c | 2 +-
drivers/s390/crypto/ap_card.c | 2 +-
drivers/s390/crypto/ap_queue.c | 2 +-
drivers/scsi/fcoe/fcoe_sysfs.c | 4 ++--
drivers/scsi/scsi_transport_iscsi.c | 4 ++--
drivers/staging/greybus/gbphy.c | 2 +-
drivers/usb/common/ulpi.c | 2 +-
19 files changed, 29 insertions(+), 29 deletions(-)
--
1.9.1
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 01/15] EDAC: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-20 11:29 ` Borislav Petkov
2017-08-19 8:22 ` [PATCH 04/15] [media] rc: " Bhumika Goyal
` (8 subsequent siblings)
9 siblings, 1 reply; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make these const as they are only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/edac/edac_mc_sysfs.c | 8 ++++----
drivers/edac/i7core_edac.c | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/edac/edac_mc_sysfs.c b/drivers/edac/edac_mc_sysfs.c
index dbc6446..e4fcfa8 100644
--- a/drivers/edac/edac_mc_sysfs.c
+++ b/drivers/edac/edac_mc_sysfs.c
@@ -304,7 +304,7 @@ static void csrow_attr_release(struct device *dev)
kfree(csrow);
}
-static struct device_type csrow_attr_type = {
+static const struct device_type csrow_attr_type = {
.groups = csrow_attr_groups,
.release = csrow_attr_release,
};
@@ -644,7 +644,7 @@ static void dimm_attr_release(struct device *dev)
kfree(dimm);
}
-static struct device_type dimm_attr_type = {
+static const struct device_type dimm_attr_type = {
.groups = dimm_attr_groups,
.release = dimm_attr_release,
};
@@ -920,7 +920,7 @@ static void mci_attr_release(struct device *dev)
kfree(mci);
}
-static struct device_type mci_attr_type = {
+static const struct device_type mci_attr_type = {
.groups = mci_attr_groups,
.release = mci_attr_release,
};
@@ -1074,7 +1074,7 @@ static void mc_attr_release(struct device *dev)
kfree(dev);
}
-static struct device_type mc_attr_type = {
+static const struct device_type mc_attr_type = {
.release = mc_attr_release,
};
/*
diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c
index d36cc84..c16c3b9 100644
--- a/drivers/edac/i7core_edac.c
+++ b/drivers/edac/i7core_edac.c
@@ -1094,7 +1094,7 @@ static void addrmatch_release(struct device *device)
kfree(device);
}
-static struct device_type addrmatch_type = {
+static const struct device_type addrmatch_type = {
.groups = addrmatch_groups,
.release = addrmatch_release,
};
@@ -1125,7 +1125,7 @@ static void all_channel_counts_release(struct device *device)
kfree(device);
}
-static struct device_type all_channel_counts_type = {
+static const struct device_type all_channel_counts_type = {
.groups = all_channel_counts_groups,
.release = all_channel_counts_release,
};
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 04/15] [media] rc: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
2017-08-19 8:22 ` [PATCH 01/15] EDAC: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-19 8:22 ` [PATCH 05/15] mei: " Bhumika Goyal
` (7 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/media/rc/rc-main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c
index a9eba00..ea3da3e 100644
--- a/drivers/media/rc/rc-main.c
+++ b/drivers/media/rc/rc-main.c
@@ -1532,7 +1532,7 @@ static RC_FILTER_ATTR(wakeup_filter_mask, S_IRUGO|S_IWUSR,
.attrs = rc_dev_wakeup_filter_attrs,
};
-static struct device_type rc_dev_type = {
+static const struct device_type rc_dev_type = {
.release = rc_dev_release,
.uevent = rc_dev_uevent,
};
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 05/15] mei: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
2017-08-19 8:22 ` [PATCH 01/15] EDAC: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 04/15] [media] rc: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-19 16:48 ` Winkler, Tomas
2017-08-19 8:22 ` [PATCH 06/15] mtd: " Bhumika Goyal
` (6 subsequent siblings)
9 siblings, 1 reply; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/misc/mei/bus.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/misc/mei/bus.c b/drivers/misc/mei/bus.c
index 40c7908..1ac10cb 100644
--- a/drivers/misc/mei/bus.c
+++ b/drivers/misc/mei/bus.c
@@ -845,7 +845,7 @@ static void mei_cl_bus_dev_release(struct device *dev)
kfree(cldev);
}
-static struct device_type mei_cl_device_type = {
+static const struct device_type mei_cl_device_type = {
.release = mei_cl_bus_dev_release,
};
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 06/15] mtd: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
` (2 preceding siblings ...)
2017-08-19 8:22 ` [PATCH 05/15] mei: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-21 20:12 ` Boris Brezillon
2017-08-19 8:22 ` [PATCH 07/15] mux: " Bhumika Goyal
` (5 subsequent siblings)
9 siblings, 1 reply; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/mtd/mtdcore.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index f872a99..e7ea842 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -340,7 +340,7 @@ static ssize_t mtd_bbtblocks_show(struct device *dev,
};
ATTRIBUTE_GROUPS(mtd);
-static struct device_type mtd_devtype = {
+static const struct device_type mtd_devtype = {
.name = "mtd",
.groups = mtd_groups,
.release = mtd_release,
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 07/15] mux: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
` (3 preceding siblings ...)
2017-08-19 8:22 ` [PATCH 06/15] mtd: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-19 8:22 ` [PATCH 09/15] phy: tegra: " Bhumika Goyal
` (4 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/mux/mux-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mux/mux-core.c b/drivers/mux/mux-core.c
index 2fe96c4..68bd16d 100644
--- a/drivers/mux/mux-core.c
+++ b/drivers/mux/mux-core.c
@@ -58,7 +58,7 @@ static void mux_chip_release(struct device *dev)
kfree(mux_chip);
}
-static struct device_type mux_type = {
+static const struct device_type mux_type = {
.name = "mux-chip",
.release = mux_chip_release,
};
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 09/15] phy: tegra: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
` (4 preceding siblings ...)
2017-08-19 8:22 ` [PATCH 07/15] mux: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-19 8:22 ` [PATCH 10/15] platform/x86: wmi: " Bhumika Goyal
` (3 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make these const as they are only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/phy/tegra/xusb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/phy/tegra/xusb.c b/drivers/phy/tegra/xusb.c
index 3cbcb25..bd3f1b6 100644
--- a/drivers/phy/tegra/xusb.c
+++ b/drivers/phy/tegra/xusb.c
@@ -155,7 +155,7 @@ static void tegra_xusb_pad_release(struct device *dev)
pad->soc->ops->remove(pad);
}
-static struct device_type tegra_xusb_pad_type = {
+static const struct device_type tegra_xusb_pad_type = {
.release = tegra_xusb_pad_release,
};
@@ -512,7 +512,7 @@ static void tegra_xusb_port_release(struct device *dev)
{
}
-static struct device_type tegra_xusb_port_type = {
+static const struct device_type tegra_xusb_port_type = {
.release = tegra_xusb_port_release,
};
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 10/15] platform/x86: wmi: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
` (5 preceding siblings ...)
2017-08-19 8:22 ` [PATCH 09/15] phy: tegra: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-19 8:22 ` [PATCH 12/15] s390/zcrypt: " Bhumika Goyal
` (2 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make these const as they are only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/platform/x86/wmi.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c
index e32ba57..a37c253 100644
--- a/drivers/platform/x86/wmi.c
+++ b/drivers/platform/x86/wmi.c
@@ -810,19 +810,19 @@ static int wmi_dev_remove(struct device *dev)
.remove = wmi_dev_remove,
};
-static struct device_type wmi_type_event = {
+static const struct device_type wmi_type_event = {
.name = "event",
.groups = wmi_event_groups,
.release = wmi_dev_release,
};
-static struct device_type wmi_type_method = {
+static const struct device_type wmi_type_method = {
.name = "method",
.groups = wmi_method_groups,
.release = wmi_dev_release,
};
-static struct device_type wmi_type_data = {
+static const struct device_type wmi_type_data = {
.name = "data",
.groups = wmi_data_groups,
.release = wmi_dev_release,
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 12/15] s390/zcrypt: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
` (6 preceding siblings ...)
2017-08-19 8:22 ` [PATCH 10/15] platform/x86: wmi: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-19 8:22 ` [PATCH 14/15] staging: greybus: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 15/15] usb: " Bhumika Goyal
9 siblings, 0 replies; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make these const as they are only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/s390/crypto/ap_card.c | 2 +-
drivers/s390/crypto/ap_queue.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/s390/crypto/ap_card.c b/drivers/s390/crypto/ap_card.c
index 836efac9..0329148 100644
--- a/drivers/s390/crypto/ap_card.c
+++ b/drivers/s390/crypto/ap_card.c
@@ -153,7 +153,7 @@ static ssize_t ap_modalias_show(struct device *dev,
NULL
};
-static struct device_type ap_card_type = {
+static const struct device_type ap_card_type = {
.name = "ap_card",
.groups = ap_card_dev_attr_groups,
};
diff --git a/drivers/s390/crypto/ap_queue.c b/drivers/s390/crypto/ap_queue.c
index 0f1a5d0..e2a85c26 100644
--- a/drivers/s390/crypto/ap_queue.c
+++ b/drivers/s390/crypto/ap_queue.c
@@ -577,7 +577,7 @@ static ssize_t ap_interrupt_show(struct device *dev,
NULL
};
-static struct device_type ap_queue_type = {
+static const struct device_type ap_queue_type = {
.name = "ap_queue",
.groups = ap_queue_dev_attr_groups,
};
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 14/15] staging: greybus: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
` (7 preceding siblings ...)
2017-08-19 8:22 ` [PATCH 12/15] s390/zcrypt: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-19 8:22 ` [PATCH 15/15] usb: " Bhumika Goyal
9 siblings, 0 replies; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/staging/greybus/gbphy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/greybus/gbphy.c b/drivers/staging/greybus/gbphy.c
index 603de6f..80c1da8 100644
--- a/drivers/staging/greybus/gbphy.c
+++ b/drivers/staging/greybus/gbphy.c
@@ -66,7 +66,7 @@ static int gb_gbphy_idle(struct device *dev)
gb_gbphy_idle)
};
-static struct device_type greybus_gbphy_dev_type = {
+static const struct device_type greybus_gbphy_dev_type = {
.name = "gbphy_device",
.release = gbphy_dev_release,
.pm = &gb_gbphy_pm_ops,
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 15/15] usb: make device_type const
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
` (8 preceding siblings ...)
2017-08-19 8:22 ` [PATCH 14/15] staging: greybus: " Bhumika Goyal
@ 2017-08-19 8:22 ` Bhumika Goyal
2017-08-22 12:55 ` Heikki Krogerus
9 siblings, 1 reply; 15+ messages in thread
From: Bhumika Goyal @ 2017-08-19 8:22 UTC (permalink / raw)
To: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
Cc: Bhumika Goyal
Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/usb/common/ulpi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c
index 930e8f3..4aa5195 100644
--- a/drivers/usb/common/ulpi.c
+++ b/drivers/usb/common/ulpi.c
@@ -135,7 +135,7 @@ static void ulpi_dev_release(struct device *dev)
kfree(to_ulpi_dev(dev));
}
-static struct device_type ulpi_dev_type = {
+static const struct device_type ulpi_dev_type = {
.name = "ulpi_device",
.groups = ulpi_dev_attr_groups,
.release = ulpi_dev_release,
--
1.9.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* RE: [PATCH 05/15] mei: make device_type const
2017-08-19 8:22 ` [PATCH 05/15] mei: " Bhumika Goyal
@ 2017-08-19 16:48 ` Winkler, Tomas
0 siblings, 0 replies; 15+ messages in thread
From: Winkler, Tomas @ 2017-08-19 16:48 UTC (permalink / raw)
To: Bhumika Goyal, julia.lawall@lip6.fr, bp@alien8.de,
mchehab@kernel.org, Vetter, Daniel, jani.nikula@linux.intel.com,
seanpaul@chromium.org, airlied@linux.ie, g.liakhovetski@gmx.de,
dwmw2@infradead.org, computersforpeace@gmail.com,
boris.brezillon@free-electrons.com, marek.vasut@gmail.com,
richard@nod.at, cyrille.pitchen@wedev4u.fr, peda@axentia.se,
kishon@ti.com, bhelgaas@google.com, thierry.reding@gmail.com,
jonathanh@nvidia.com, dvhart@infradead.org, andy@infradead.org,
ohad@wizery.com, bjorn.andersson@linaro.org, freude@de.ibm.com,
schwidefsky@de.ibm.com, heiko.carstens@de.ibm.com, jth@kernel.org,
jejb@linux.vnet.ibm.com, martin.petersen@oracle.com,
lduncan@suse.com, cleech@redhat.com, johan@kernel.org,
elder@kernel.org, gregkh@linuxfoundation.org,
heikki.krogerus@linux.intel.com, linux-edac@vger.kernel.org,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux-media@vger.kernel.org, linux-mtd@lists.infradead.org,
linux-pci@vger.kernel.org, linux-tegra@vger.kernel.org,
platform-driver-x86@vger.kernel.org,
linux-remoteproc@vger.kernel.org, linux-s390@vger.kernel.org,
fcoe-devel@open-fcoe.org, linux-scsi@vger.kernel.org,
open-iscsi@googlegroups.com, greybus-dev@lists.linaro.org,
devel@driverdev.osuosl.org, linux-usb@vger.kernel.org
> Subject: [PATCH 05/15] mei: make device_type const
>
> Make this const as it is only stored in the type field of a device structure,
> which is const.
> Done using Coccinelle.
>
> Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
> ---
> drivers/misc/mei/bus.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/misc/mei/bus.c b/drivers/misc/mei/bus.c index
> 40c7908..1ac10cb 100644
> --- a/drivers/misc/mei/bus.c
> +++ b/drivers/misc/mei/bus.c
> @@ -845,7 +845,7 @@ static void mei_cl_bus_dev_release(struct device
> *dev)
> kfree(cldev);
> }
>
> -static struct device_type mei_cl_device_type = {
> +static const struct device_type mei_cl_device_type = {
> .release = mei_cl_bus_dev_release,
> };
>
LGTM
Thanks
Tomas
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 01/15] EDAC: make device_type const
2017-08-19 8:22 ` [PATCH 01/15] EDAC: " Bhumika Goyal
@ 2017-08-20 11:29 ` Borislav Petkov
0 siblings, 0 replies; 15+ messages in thread
From: Borislav Petkov @ 2017-08-20 11:29 UTC (permalink / raw)
To: Bhumika Goyal
Cc: julia.lawall, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
heikki.krogerus, linux-edac, linux-kernel, dri-devel, linux-media,
linux-mtd, linux-pci, linux-tegra, platform-driver-x86,
linux-remoteproc, linux-s390, fcoe-devel, linux-scsi, open-iscsi,
greybus-dev, devel, linux-usb
On Sat, Aug 19, 2017 at 01:52:12PM +0530, Bhumika Goyal wrote:
> Make these const as they are only stored in the type field of a device
> structure, which is const.
> Done using Coccinelle.
>
> Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
> ---
> drivers/edac/edac_mc_sysfs.c | 8 ++++----
> drivers/edac/i7core_edac.c | 4 ++--
> 2 files changed, 6 insertions(+), 6 deletions(-)
Applied, thanks.
--
Regards/Gruss,
Boris.
Good mailing practices for 400: avoid top-posting and trim the reply.
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 06/15] mtd: make device_type const
2017-08-19 8:22 ` [PATCH 06/15] mtd: " Bhumika Goyal
@ 2017-08-21 20:12 ` Boris Brezillon
0 siblings, 0 replies; 15+ messages in thread
From: Boris Brezillon @ 2017-08-21 20:12 UTC (permalink / raw)
To: Bhumika Goyal
Cc: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
marek.vasut, richard, cyrille.pitchen, peda, kishon, bhelgaas,
thierry.reding, jonathanh, dvhart, andy, ohad, bjorn.andersson,
freude, schwidefsky, heiko.carstens, jth, jejb, martin.petersen,
lduncan, cleech, johan, elder, gregkh, heikki.krogerus,
linux-edac, linux-kernel, dri-devel, linux-media, linux-mtd,
linux-pci, linux-tegra, platform-driver-x86, linux-remoteproc,
linux-s390, fcoe-devel, linux-scsi, open-iscsi, greybus-dev,
devel, linux-usb
Le Sat, 19 Aug 2017 13:52:17 +0530,
Bhumika Goyal <bhumirks@gmail.com> a écrit :
> Make this const as it is only stored in the type field of a device
> structure, which is const.
> Done using Coccinelle.
>
Applied to l2-mtd/master.
Thanks,
Boris
> Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
> ---
> drivers/mtd/mtdcore.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
> index f872a99..e7ea842 100644
> --- a/drivers/mtd/mtdcore.c
> +++ b/drivers/mtd/mtdcore.c
> @@ -340,7 +340,7 @@ static ssize_t mtd_bbtblocks_show(struct device *dev,
> };
> ATTRIBUTE_GROUPS(mtd);
>
> -static struct device_type mtd_devtype = {
> +static const struct device_type mtd_devtype = {
> .name = "mtd",
> .groups = mtd_groups,
> .release = mtd_release,
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 15/15] usb: make device_type const
2017-08-19 8:22 ` [PATCH 15/15] usb: " Bhumika Goyal
@ 2017-08-22 12:55 ` Heikki Krogerus
0 siblings, 0 replies; 15+ messages in thread
From: Heikki Krogerus @ 2017-08-22 12:55 UTC (permalink / raw)
To: Bhumika Goyal
Cc: julia.lawall, bp, mchehab, daniel.vetter, jani.nikula, seanpaul,
airlied, g.liakhovetski, tomas.winkler, dwmw2, computersforpeace,
boris.brezillon, marek.vasut, richard, cyrille.pitchen, peda,
kishon, bhelgaas, thierry.reding, jonathanh, dvhart, andy, ohad,
bjorn.andersson, freude, schwidefsky, heiko.carstens, jth, jejb,
martin.petersen, lduncan, cleech, johan, elder, gregkh,
linux-edac, linux-kernel, dri-devel, linux-media, linux-mtd,
linux-pci, linux-tegra, platform-driver-x86, linux-remoteproc,
linux-s390, fcoe-devel, linux-scsi, open-iscsi, greybus-dev,
devel, linux-usb
On Sat, Aug 19, 2017 at 01:52:26PM +0530, Bhumika Goyal wrote:
> Make this const as it is only stored in the type field of a device
> structure, which is const.
> Done using Coccinelle.
>
> Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> ---
> drivers/usb/common/ulpi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c
> index 930e8f3..4aa5195 100644
> --- a/drivers/usb/common/ulpi.c
> +++ b/drivers/usb/common/ulpi.c
> @@ -135,7 +135,7 @@ static void ulpi_dev_release(struct device *dev)
> kfree(to_ulpi_dev(dev));
> }
>
> -static struct device_type ulpi_dev_type = {
> +static const struct device_type ulpi_dev_type = {
> .name = "ulpi_device",
> .groups = ulpi_dev_attr_groups,
> .release = ulpi_dev_release,
Thanks,
--
heikki
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2017-08-22 12:55 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-19 8:22 [PATCH 00/15] drivers: make device_type const Bhumika Goyal
2017-08-19 8:22 ` [PATCH 01/15] EDAC: " Bhumika Goyal
2017-08-20 11:29 ` Borislav Petkov
2017-08-19 8:22 ` [PATCH 04/15] [media] rc: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 05/15] mei: " Bhumika Goyal
2017-08-19 16:48 ` Winkler, Tomas
2017-08-19 8:22 ` [PATCH 06/15] mtd: " Bhumika Goyal
2017-08-21 20:12 ` Boris Brezillon
2017-08-19 8:22 ` [PATCH 07/15] mux: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 09/15] phy: tegra: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 10/15] platform/x86: wmi: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 12/15] s390/zcrypt: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 14/15] staging: greybus: " Bhumika Goyal
2017-08-19 8:22 ` [PATCH 15/15] usb: " Bhumika Goyal
2017-08-22 12:55 ` Heikki Krogerus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox