diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-03-15 01:09:52 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-03-27 17:50:01 -0400 |
commit | 8b0ef2580f7ffdd0018332ab9c085729afa59f75 (patch) | |
tree | 6c68316ad65fa474ac21aed2c2ec6e04b1bbc663 /drivers/pinctrl/pinctrl-coh901.c | |
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/pinctrl/pinctrl-coh901.c')
-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, | |||
359 | drmode &= (U300_GPIO_PXPCR_PIN_MODE_MASK << ((offset & 0x07) << 1)); | 359 | drmode &= (U300_GPIO_PXPCR_PIN_MODE_MASK << ((offset & 0x07) << 1)); |
360 | drmode >>= ((offset & 0x07) << 1); | 360 | drmode >>= ((offset & 0x07) << 1); |
361 | 361 | ||
362 | switch(param) { | 362 | switch (param) { |
363 | case PIN_CONFIG_BIAS_HIGH_IMPEDANCE: | 363 | case PIN_CONFIG_BIAS_HIGH_IMPEDANCE: |
364 | *config = 0; | 364 | *config = 0; |
365 | if (biasmode) | 365 | if (biasmode) |