Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9f50048 authored by Phil Reid's avatar Phil Reid Committed by Linus Walleij
Browse files

pinctrl: mcp23s08: fix probing of mcp23s18



one_regmap_config is always null if mcp type is MCP_TYPE_S18.
Remove the null check so that the mcp23s18 will probe.

Fixes: 1781af56 ("pinctrl: mcp23s08: spi: Fix duplicate pinctrl debugfs entries")
Signed-off-by: default avatarPhil Reid <preid@electromag.com.au>
Reviewed-by: default avatarJan Kundrát <jan.kundrat@cesnet.cz>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 12b10f47
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -823,8 +823,6 @@ static int mcp23s08_probe_one(struct mcp23s08 *mcp, struct device *dev,
		break;

	case MCP_TYPE_S18:
		if (!one_regmap_config)
			return -ENOMEM;
		mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp,
					       &mcp23x17_regmap);
		mcp->reg_shift = 1;