aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRicardo Ribalda Delgado <ricardo.ribalda@gmail.com>2015-01-19 06:27:24 -0500
committerLinus Walleij <linus.walleij@linaro.org>2015-01-20 05:18:46 -0500
commit68a99b187df3f4675f22a4a3f54c9d7645ab6409 (patch)
treeecea98e7df5423676373a506fdf152ca889717cc /drivers
parentf3f26c2f4b15b5b56ed87610403e4a98a13d6369 (diff)
gpio: gpio-mm-lantiq: Use of_property_read_u32
Instead of parsing manually the shadow content, use the much simpler helper of_property_read_u32. Cc: Alexandre Courbot <gnurou@gmail.com> Cc: Grant Likely <grant.likely@linaro.org> Cc: Rob Herring <robh+dt@kernel.org> Cc: John Crispin <blogic@openwrt.org> Cc: devicetree@vger.kernel.org Cc: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpio/gpio-mm-lantiq.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/gpio/gpio-mm-lantiq.c b/drivers/gpio/gpio-mm-lantiq.c
index 7d551610244b..95ff180d261e 100644
--- a/drivers/gpio/gpio-mm-lantiq.c
+++ b/drivers/gpio/gpio-mm-lantiq.c
@@ -105,7 +105,7 @@ static void ltq_mm_save_regs(struct of_mm_gpio_chip *mm_gc)
105static int ltq_mm_probe(struct platform_device *pdev) 105static int ltq_mm_probe(struct platform_device *pdev)
106{ 106{
107 struct ltq_mm *chip; 107 struct ltq_mm *chip;
108 const __be32 *shadow; 108 u32 shadow;
109 109
110 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL); 110 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
111 if (!chip) 111 if (!chip)
@@ -117,9 +117,8 @@ static int ltq_mm_probe(struct platform_device *pdev)
117 chip->mmchip.save_regs = ltq_mm_save_regs; 117 chip->mmchip.save_regs = ltq_mm_save_regs;
118 118
119 /* store the shadow value if one was passed by the devicetree */ 119 /* store the shadow value if one was passed by the devicetree */
120 shadow = of_get_property(pdev->dev.of_node, "lantiq,shadow", NULL); 120 if (!of_property_read_u32(pdev->dev.of_node, "lantiq,shadow", &shadow))
121 if (shadow) 121 chip->shadow = shadow;
122 chip->shadow = be32_to_cpu(*shadow);
123 122
124 return of_mm_gpiochip_add(pdev->dev.of_node, &chip->mmchip); 123 return of_mm_gpiochip_add(pdev->dev.of_node, &chip->mmchip);
125} 124}