pinctrl: cy8c95x0: use bits.h macros for all masks
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 2 Sep 2022 18:26:49 +0000 (21:26 +0300)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 8 Sep 2022 08:06:15 +0000 (10:06 +0200)
Make use of the GENMASK() (far less error-prone, far more concise).

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Link: https://lore.kernel.org/r/20220902182650.83098-16-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-cy8c95x0.c

index a427909501820de04be6f691d7a0a2e883102329..c8f86c3f526f8907271df660ff66559f1190aad7 100644 (file)
@@ -374,14 +374,14 @@ static bool cy8c95x0_precious_register(struct device *dev, unsigned int reg)
 }
 
 static const struct reg_default cy8c95x0_reg_defaults[] = {
-       { CY8C95X0_OUTPUT_(0), 0xff },
-       { CY8C95X0_OUTPUT_(1), 0xff },
-       { CY8C95X0_OUTPUT_(2), 0xff },
-       { CY8C95X0_OUTPUT_(3), 0xff },
-       { CY8C95X0_OUTPUT_(4), 0xff },
-       { CY8C95X0_OUTPUT_(5), 0xff },
-       { CY8C95X0_OUTPUT_(6), 0xff },
-       { CY8C95X0_OUTPUT_(7), 0xff },
+       { CY8C95X0_OUTPUT_(0), GENMASK(7, 0) },
+       { CY8C95X0_OUTPUT_(1), GENMASK(7, 0) },
+       { CY8C95X0_OUTPUT_(2), GENMASK(7, 0) },
+       { CY8C95X0_OUTPUT_(3), GENMASK(7, 0) },
+       { CY8C95X0_OUTPUT_(4), GENMASK(7, 0) },
+       { CY8C95X0_OUTPUT_(5), GENMASK(7, 0) },
+       { CY8C95X0_OUTPUT_(6), GENMASK(7, 0) },
+       { CY8C95X0_OUTPUT_(7), GENMASK(7, 0) },
        { CY8C95X0_PORTSEL, 0 },
        { CY8C95X0_PWMSEL, 0 },
 };
@@ -1268,7 +1268,7 @@ static int cy8c95x0_detect(struct i2c_client *client,
        ret = i2c_smbus_read_byte_data(client, CY8C95X0_DEVID);
        if (ret < 0)
                return ret;
-       switch (ret & 0xf0) {
+       switch (ret & GENMASK(7, 4)) {
        case 0x20:
                name = cy8c95x0_id[0].name;
                break;