diff mbox series

pinctrl: sirf: make const array rsc_ids static

Message ID 20181004133740.19913-1-colin.king@canonical.com (mailing list archive)
State New, archived
Headers show
Series pinctrl: sirf: make const array rsc_ids static | expand

Commit Message

Colin King Oct. 4, 2018, 1:37 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

The const array rsc_ids can be made static, saves populating it on
the stack and will make it read-only.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/pinctrl/sirf/pinctrl-sirf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/pinctrl/sirf/pinctrl-sirf.c b/drivers/pinctrl/sirf/pinctrl-sirf.c
index 2e42d738b589..2a44b911018e 100644
--- a/drivers/pinctrl/sirf/pinctrl-sirf.c
+++ b/drivers/pinctrl/sirf/pinctrl-sirf.c
@@ -246,7 +246,7 @@  static struct pinctrl_desc sirfsoc_pinmux_desc = {
 
 static void __iomem *sirfsoc_rsc_of_iomap(void)
 {
-	const struct of_device_id rsc_ids[]  = {
+	static const struct of_device_id rsc_ids[]  = {
 		{ .compatible = "sirf,prima2-rsc" },
 		{}
 	};