]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
pinctrl: mediatek: remove set but not used variable 'e'
authorYueHaibing <yuehaibing@huawei.com>
Tue, 18 Feb 2020 02:36:25 +0000 (10:36 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 20 Feb 2020 15:13:31 +0000 (16:13 +0100)
drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c: In function mtk_hw_pin_field_lookup:
drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c:70:39: warning:
 variable e set but not used [-Wunused-but-set-variable]

Since commit 3de7deefce69 ("pinctrl: mediatek: Check gpio pin
number and use binary search in mtk_hw_pin_field_lookup()"),
it is not used any more, so remove it, also remove redundant
assignment to variable c, it will be assigned a new value later
before used.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Link: https://lore.kernel.org/r/20200218023625.14324-1-yuehaibing@huawei.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c

index 1da942548ff448c6999594be6e743c39c66f1755..d3169a87e1b36f639edf94f33cebf7de1b2cf90f 100644 (file)
@@ -67,7 +67,7 @@ static int mtk_hw_pin_field_lookup(struct mtk_pinctrl *hw,
                                   const struct mtk_pin_desc *desc,
                                   int field, struct mtk_pin_field *pfd)
 {
-       const struct mtk_pin_field_calc *c, *e;
+       const struct mtk_pin_field_calc *c;
        const struct mtk_pin_reg_calc *rc;
        int start = 0, end, check;
        bool found = false;
@@ -82,8 +82,6 @@ static int mtk_hw_pin_field_lookup(struct mtk_pinctrl *hw,
        }
 
        end = rc->nranges - 1;
-       c = rc->range;
-       e = c + rc->nranges;
 
        while (start <= end) {
                check = (start + end) >> 1;