pinctrl: mediatek: mtk-common: use true and false for boolean values
Assign true or false to boolean variables instead of an integer value. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
a34ea4b40f
commit
b2f78906d5
|
@ -501,7 +501,7 @@ static int mtk_pctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
|
||||||
int num_pins, num_funcs, maps_per_pin;
|
int num_pins, num_funcs, maps_per_pin;
|
||||||
unsigned long *configs;
|
unsigned long *configs;
|
||||||
unsigned int num_configs;
|
unsigned int num_configs;
|
||||||
bool has_config = 0;
|
bool has_config = false;
|
||||||
int i, err;
|
int i, err;
|
||||||
unsigned reserve = 0;
|
unsigned reserve = 0;
|
||||||
struct mtk_pinctrl_group *grp;
|
struct mtk_pinctrl_group *grp;
|
||||||
|
@ -520,7 +520,7 @@ static int mtk_pctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
if (num_configs)
|
if (num_configs)
|
||||||
has_config = 1;
|
has_config = true;
|
||||||
|
|
||||||
num_pins = pins->length / sizeof(u32);
|
num_pins = pins->length / sizeof(u32);
|
||||||
num_funcs = num_pins;
|
num_funcs = num_pins;
|
||||||
|
|
Loading…
Reference in New Issue