Commit f4da9b1e authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: mt7621-pinctrl: avoid space after if condition

Adding spaces between if condition and parenthesis are not
needed at all and checkpatch script complains about them.
Fix one in driver code.
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b3cd051d
...@@ -357,7 +357,7 @@ static int rt2880_pinmux_pins(struct rt2880_priv *p) ...@@ -357,7 +357,7 @@ static int rt2880_pinmux_pins(struct rt2880_priv *p)
p->pads = devm_kcalloc(p->dev, p->pads = devm_kcalloc(p->dev,
p->max_pins, sizeof(struct pinctrl_pin_desc), p->max_pins, sizeof(struct pinctrl_pin_desc),
GFP_KERNEL); GFP_KERNEL);
if (!p->pads || !p->gpio ) { if (!p->pads || !p->gpio) {
dev_err(p->dev, "Failed to allocate gpio data\n"); dev_err(p->dev, "Failed to allocate gpio data\n");
return -ENOMEM; return -ENOMEM;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment