diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2016-03-30 10:48:09 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-04-19 07:59:06 +0100 |
commit | 7ad073695dff7b1fc2a6ef2e8112d96a76fc8dc4 (patch) | |
tree | ff98436091d0439f6b79b89eb0700e9a13b955b9 /drivers/mfd/vexpress-sysreg.c | |
parent | 7d94352eba4f943734c19d172a834d0b2affec09 (diff) | |
download | talos-obmc-linux-7ad073695dff7b1fc2a6ef2e8112d96a76fc8dc4.tar.gz talos-obmc-linux-7ad073695dff7b1fc2a6ef2e8112d96a76fc8dc4.zip |
mfd: vexpress-sysreg: Switch to gpiochip_add_data()
We're planning to remove the gpiochip_add() function to swith
to gpiochip_add_data() with NULL for data argument.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/vexpress-sysreg.c')
-rw-r--r-- | drivers/mfd/vexpress-sysreg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/vexpress-sysreg.c b/drivers/mfd/vexpress-sysreg.c index 855c0204f09a..201a3ea2a9d3 100644 --- a/drivers/mfd/vexpress-sysreg.c +++ b/drivers/mfd/vexpress-sysreg.c @@ -202,7 +202,7 @@ static int vexpress_sysreg_probe(struct platform_device *pdev) bgpio_init(mmc_gpio_chip, &pdev->dev, 0x4, base + SYS_MCI, NULL, NULL, NULL, NULL, 0); mmc_gpio_chip->ngpio = 2; - gpiochip_add(mmc_gpio_chip); + gpiochip_add_data(mmc_gpio_chip, NULL); return mfd_add_devices(&pdev->dev, PLATFORM_DEVID_AUTO, vexpress_sysreg_cells, |