diff options
author | Roland Stigge <stigge@antcom.de> | 2012-06-27 11:51:14 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-07-06 13:25:16 -0400 |
commit | 21535ab39a74b5ec074e2d10b132e866472e86f9 (patch) | |
tree | 632e71e2a557c776c7b55981b033035d796ef579 | |
parent | df63fe7657d75424f58b41ac079ed8bc4b4676fb (diff) |
mtd: lpc32xx_slc: Use of_get_named_gpio()
This patch makes the lpc32xx_slc driver use of_get_named_gpio() instead of
of_get_named_gpio_flags() whose flags are discarded anyway.
Signed-off-by: Roland Stigge <stigge@antcom.de>
Acked-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r-- | drivers/mtd/nand/lpc32xx_slc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/lpc32xx_slc.c b/drivers/mtd/nand/lpc32xx_slc.c index 1577a9b0d0c2..116665015269 100644 --- a/drivers/mtd/nand/lpc32xx_slc.c +++ b/drivers/mtd/nand/lpc32xx_slc.c | |||
@@ -770,7 +770,7 @@ static struct lpc32xx_nand_cfg_slc *lpc32xx_parse_dt(struct device *dev) | |||
770 | } | 770 | } |
771 | 771 | ||
772 | pdata->use_bbt = of_get_nand_on_flash_bbt(np); | 772 | pdata->use_bbt = of_get_nand_on_flash_bbt(np); |
773 | pdata->wp_gpio = of_get_named_gpio_flags(np, "gpios", 0, NULL); | 773 | pdata->wp_gpio = of_get_named_gpio(np, "gpios", 0); |
774 | 774 | ||
775 | return pdata; | 775 | return pdata; |
776 | } | 776 | } |