mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-12 16:19:53 +00:00
pinctrl: samsung: Do not initialise statics to 0
Static variables are initialised to 0 by GCC. Fixes the following checkpatch error: ERROR: do not initialise statics to 0 or NULL FILE: pinctrl/pinctrl-samsung.c:50: static unsigned int pin_base = 0; Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
4a991b410c
commit
6fb6f1ba60
@ -47,7 +47,7 @@ struct pin_config {
|
|||||||
{ "samsung,pin-pud-pdn", PINCFG_TYPE_PUD_PDN },
|
{ "samsung,pin-pud-pdn", PINCFG_TYPE_PUD_PDN },
|
||||||
};
|
};
|
||||||
|
|
||||||
static unsigned int pin_base = 0;
|
static unsigned int pin_base;
|
||||||
|
|
||||||
static inline struct samsung_pin_bank *gc_to_pin_bank(struct gpio_chip *gc)
|
static inline struct samsung_pin_bank *gc_to_pin_bank(struct gpio_chip *gc)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user