diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-03-15 10:39:52 +0530 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-03-27 22:50:01 +0100 |
commit | 8b0ef2580f7ffdd0018332ab9c085729afa59f75 (patch) | |
tree | 6c68316ad65fa474ac21aed2c2ec6e04b1bbc663 /drivers | |
parent | b6465424a66abbb5c0b387a9af0fb3a309fcda60 (diff) |
pinctrl: coh901: Fix checkpatch error
Fixes the following checkpatch error:
ERROR: space required before the open parenthesis '('
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pinctrl/pinctrl-coh901.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-coh901.c b/drivers/pinctrl/pinctrl-coh901.c index 8b7e7bc2226b..86887850ac13 100644 --- a/drivers/pinctrl/pinctrl-coh901.c +++ b/drivers/pinctrl/pinctrl-coh901.c @@ -359,7 +359,7 @@ int u300_gpio_config_get(struct gpio_chip *chip, drmode &= (U300_GPIO_PXPCR_PIN_MODE_MASK << ((offset & 0x07) << 1)); drmode >>= ((offset & 0x07) << 1); - switch(param) { + switch (param) { case PIN_CONFIG_BIAS_HIGH_IMPEDANCE: *config = 0; if (biasmode) |