]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
pinctrl: k230: Drop unused code
authorLinus Walleij <linus.walleij@linaro.org>
Thu, 3 Oct 2024 14:44:43 +0000 (16:44 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 4 Oct 2024 07:46:27 +0000 (09:46 +0200)
The build robot complains about unused code. Let's drop it,
this can be restored with simple git revert when needed.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202410021136.ie3cFM2w-lkp@intel.com/
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/20241003-k320-unused-v1-1-72e65bc2f27b@linaro.org
drivers/pinctrl/pinctrl-k230.c

index 4266516886fce6b5861d7d9435a3c6719f013bee..a9b4627b46b01237801103df566b9391f8be21b8 100644 (file)
@@ -156,7 +156,7 @@ static void k230_pinctrl_pin_dbg_show(struct pinctrl_dev *pctldev,
                                      struct seq_file *s, unsigned int offset)
 {
        struct k230_pinctrl *info = pinctrl_dev_get_drvdata(pctldev);
-       u32 val, mode, bias, drive, input, output, slew, schmitt, power;
+       u32 val, bias, drive, input, slew, schmitt, power;
        struct k230_pin_group *grp = k230_pins[offset].drv_data;
        static const char * const biasing[] = {
                        "pull none", "pull down", "pull up", "" };
@@ -167,11 +167,9 @@ static void k230_pinctrl_pin_dbg_show(struct pinctrl_dev *pctldev,
 
        regmap_read(info->regmap_base, offset * 4, &val);
 
-       mode    = (val & K230_PC_SEL) >> K230_SHIFT_SEL;
        drive   = (val & K230_PC_DS) >> K230_SHIFT_DS;
        bias    = (val & K230_PC_BIAS) >> K230_SHIFT_BIAS;
        input   = (val & K230_PC_IE) >> K230_SHIFT_IE;
-       output  = (val & K230_PC_OE) >> K230_SHIFT_OE;
        slew    = (val & K230_PC_SL) >> K230_SHIFT_SL;
        schmitt = (val & K230_PC_ST) >> K230_SHIFT_ST;
        power   = (val & K230_PC_MSC) >> K230_SHIFT_MSC;