All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] staging: greybus: declare struct of_device_id as const
@ 2016-09-22 15:33 Eva Rachel Retuya
  2016-09-22 15:33 ` [PATCH v2 1/2] staging: greybus: arche-apb-ctrl: " Eva Rachel Retuya
  2016-09-22 15:33 ` [PATCH v2 2/2] staging: greybus: arche-platform: " Eva Rachel Retuya
  0 siblings, 2 replies; 3+ messages in thread
From: Eva Rachel Retuya @ 2016-09-22 15:33 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: johan, elder, gregkh, Eva Rachel Retuya

Address the following checkpatch warning:
WARNING: struct of_device_id should be normally const

Change in v2:
* Explain in the commit message why the change is correct

Eva Rachel Retuya (2):
  staging: greybus: arche-apb-ctrl: declare struct of_device_id as const
  staging: greybus: arche-platform: declare struct of_device_id as const

 drivers/staging/greybus/arche-apb-ctrl.c | 2 +-
 drivers/staging/greybus/arche-platform.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.7.4



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v2 1/2] staging: greybus: arche-apb-ctrl: declare struct of_device_id as const
  2016-09-22 15:33 [PATCH v2 0/2] staging: greybus: declare struct of_device_id as const Eva Rachel Retuya
@ 2016-09-22 15:33 ` Eva Rachel Retuya
  2016-09-22 15:33 ` [PATCH v2 2/2] staging: greybus: arche-platform: " Eva Rachel Retuya
  1 sibling, 0 replies; 3+ messages in thread
From: Eva Rachel Retuya @ 2016-09-22 15:33 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: johan, elder, gregkh, Eva Rachel Retuya

Declare the 'arche_apb_ctrl_of_match' array as const. This array is only stored
in the .of_match_table field of a device_driver structure, which is declared as
const. This addresses the checkpatch warning:

WARNING: struct of_device_id should be normally const

Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
---
 drivers/staging/greybus/arche-apb-ctrl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/greybus/arche-apb-ctrl.c b/drivers/staging/greybus/arche-apb-ctrl.c
index 59d9d42..70323aa 100644
--- a/drivers/staging/greybus/arche-apb-ctrl.c
+++ b/drivers/staging/greybus/arche-apb-ctrl.c
@@ -495,7 +495,7 @@ static void arche_apb_ctrl_shutdown(struct platform_device *pdev)
 static SIMPLE_DEV_PM_OPS(arche_apb_ctrl_pm_ops, arche_apb_ctrl_suspend,
 			 arche_apb_ctrl_resume);
 
-static struct of_device_id arche_apb_ctrl_of_match[] = {
+static const struct of_device_id arche_apb_ctrl_of_match[] = {
 	{ .compatible = "usbffff,2", },
 	{ },
 };
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH v2 2/2] staging: greybus: arche-platform: declare struct of_device_id as const
  2016-09-22 15:33 [PATCH v2 0/2] staging: greybus: declare struct of_device_id as const Eva Rachel Retuya
  2016-09-22 15:33 ` [PATCH v2 1/2] staging: greybus: arche-apb-ctrl: " Eva Rachel Retuya
@ 2016-09-22 15:33 ` Eva Rachel Retuya
  1 sibling, 0 replies; 3+ messages in thread
From: Eva Rachel Retuya @ 2016-09-22 15:33 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: johan, elder, gregkh, Eva Rachel Retuya

Declare the arrays 'arche_platform_of_match' and 'arche_combined_id' as const.

'arche_platform_of_match' is only stored in the .of_match_table field of a
device_driver structure, which is declared as const.

'arche_combined_id' is passed to MODULE_DEVICE_TABLE. This macro does not
modify the array and therefore the array can be declared as const. Checkpatch
pointed out both issues.

WARNING: struct of_device_id should be normally const

Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
---
This is not compile-tested. The header file 'linux/usb/usb3613.h' is required,
which is not present in the kernel.

 drivers/staging/greybus/arche-platform.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/greybus/arche-platform.c b/drivers/staging/greybus/arche-platform.c
index d6b3609..e36ee98 100644
--- a/drivers/staging/greybus/arche-platform.c
+++ b/drivers/staging/greybus/arche-platform.c
@@ -776,12 +776,12 @@ static SIMPLE_DEV_PM_OPS(arche_platform_pm_ops,
 			arche_platform_suspend,
 			arche_platform_resume);
 
-static struct of_device_id arche_platform_of_match[] = {
+static const struct of_device_id arche_platform_of_match[] = {
 	{ .compatible = "google,arche-platform", }, /* Use PID/VID of SVC device */
 	{ },
 };
 
-static struct of_device_id arche_combined_id[] = {
+static const struct of_device_id arche_combined_id[] = {
 	{ .compatible = "google,arche-platform", }, /* Use PID/VID of SVC device */
 	{ .compatible = "usbffff,2", },
 	{ },
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-22 15:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-22 15:33 [PATCH v2 0/2] staging: greybus: declare struct of_device_id as const Eva Rachel Retuya
2016-09-22 15:33 ` [PATCH v2 1/2] staging: greybus: arche-apb-ctrl: " Eva Rachel Retuya
2016-09-22 15:33 ` [PATCH v2 2/2] staging: greybus: arche-platform: " Eva Rachel Retuya

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.