diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-06-24 07:20:21 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-06-24 09:20:33 -0400 |
commit | b94089751af310ce267ec6301f91ac84db4d8168 (patch) | |
tree | 3f60f76e723fe0ca489540ed6c373c1afbc96fa1 /drivers/pinctrl | |
parent | 7cc5f970082eea2a5557040eced0a49ad21f37c7 (diff) |
pinctrl: samsung: Staticize drvdata_list
'drvdata_list' is used only in this file. Make it static.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/pinctrl-samsung.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-samsung.c b/drivers/pinctrl/pinctrl-samsung.c index 63ac22e89678..a46694bee56b 100644 --- a/drivers/pinctrl/pinctrl-samsung.c +++ b/drivers/pinctrl/pinctrl-samsung.c | |||
@@ -50,7 +50,7 @@ static struct pin_config { | |||
50 | }; | 50 | }; |
51 | 51 | ||
52 | /* Global list of devices (struct samsung_pinctrl_drv_data) */ | 52 | /* Global list of devices (struct samsung_pinctrl_drv_data) */ |
53 | LIST_HEAD(drvdata_list); | 53 | static LIST_HEAD(drvdata_list); |
54 | 54 | ||
55 | static unsigned int pin_base; | 55 | static unsigned int pin_base; |
56 | 56 | ||