mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
MIPS: txx9: rbtx4938: 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. Cc: linux-mips@linux-mips.org Acked-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
be7658f71e
commit
ff53d12c50
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@
|
||||||
#include <linux/ioport.h>
|
#include <linux/ioport.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/gpio/driver.h>
|
||||||
#include <linux/gpio.h>
|
#include <linux/gpio.h>
|
||||||
#include <linux/mtd/physmap.h>
|
#include <linux/mtd/physmap.h>
|
||||||
|
|
||||||
|
@ -335,7 +336,7 @@ static void __init rbtx4938_mtd_init(void)
|
||||||
|
|
||||||
static void __init rbtx4938_arch_init(void)
|
static void __init rbtx4938_arch_init(void)
|
||||||
{
|
{
|
||||||
gpiochip_add(&rbtx4938_spi_gpio_chip);
|
gpiochip_add_data(&rbtx4938_spi_gpio_chip, NULL);
|
||||||
rbtx4938_pci_setup();
|
rbtx4938_pci_setup();
|
||||||
rbtx4938_spi_init();
|
rbtx4938_spi_init();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue