aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-bf527/boards/tll6527m.c
diff options
context:
space:
mode:
authorSebastian Reichel <sebastian.reichel@collabora.co.uk>2017-05-15 11:24:36 +0200
committerLinus Walleij <linus.walleij@linaro.org>2017-05-23 09:50:47 +0200
commitce9bd0a0ff106b478012dc2e4c2b10bb0138dd7a (patch)
tree12c1f851119041be093958dc2a58c5bfb9186a43 /arch/blackfin/mach-bf527/boards/tll6527m.c
parentpinctrl: mcp23s08: generalize irq property handling (diff)
downloadlinux-dev-ce9bd0a0ff106b478012dc2e4c2b10bb0138dd7a.tar.xz
linux-dev-ce9bd0a0ff106b478012dc2e4c2b10bb0138dd7a.zip
pinctrl: mcp23s08: simplify spi_present_mask handling
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to '')
-rw-r--r--arch/blackfin/mach-bf527/boards/tll6527m.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/mach-bf527/boards/tll6527m.c b/arch/blackfin/mach-bf527/boards/tll6527m.c
index be61477826f3..ce5488e8226b 100644
--- a/arch/blackfin/mach-bf527/boards/tll6527m.c
+++ b/arch/blackfin/mach-bf527/boards/tll6527m.c
@@ -351,11 +351,11 @@ static struct platform_device bfin_i2s = {
#if IS_ENABLED(CONFIG_PINCTRL_MCP23S08)
#include <linux/spi/mcp23s08.h>
static const struct mcp23s08_platform_data bfin_mcp23s08_sys_gpio_info = {
- .chip[0].is_present = true,
+ .spi_present_mask = BIT(0),
.base = 0x30,
};
static const struct mcp23s08_platform_data bfin_mcp23s08_usr_gpio_info = {
- .chip[2].is_present = true,
+ .spi_present_mask = BIT(2),
.base = 0x38,
};
#endif