Skip to content

Commit

Permalink
pinctrl: tz1090-pdc: Remove unneded semicolons
Browse files Browse the repository at this point in the history
They aren't needed and are just creating null statements so remove it.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Javier Martinez Canillas authored and Linus Walleij committed Oct 2, 2015
1 parent 9168888 commit 1978c5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/pinctrl/pinctrl-tz1090-pdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ static int tz1090_pdc_pinconf_reg(struct pinctrl_dev *pctldev,
break;
default:
return -ENOTSUPP;
};
}

/* Only input bias parameters supported */
*reg = REG_GPIO_CONTROL2;
Expand Down Expand Up @@ -801,7 +801,7 @@ static int tz1090_pdc_pinconf_group_reg(struct pinctrl_dev *pctldev,
break;
default:
return -ENOTSUPP;
};
}

/* Calculate field information */
*mask = (BIT(*width) - 1) << *shift;
Expand Down

0 comments on commit 1978c5e

Please sign in to comment.