From 800518dc7528165a4f36b6f855c30329d9acd91b Mon Sep 17 00:00:00 2001 From: Peter Denison Date: Sat, 30 Jun 2007 23:10:22 +0000 Subject: [PATCH 1/1] Bring mach-bcm947xx/gpio.h into line with new SSB code, as per #1640 SVN-Revision: 7814 --- .../include/asm-mips/mach-bcm947xx/gpio.h | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/target/linux/brcm47xx-2.6/files/include/asm-mips/mach-bcm947xx/gpio.h b/target/linux/brcm47xx-2.6/files/include/asm-mips/mach-bcm947xx/gpio.h index 2999a255f0..9a67e8e764 100644 --- a/target/linux/brcm47xx-2.6/files/include/asm-mips/mach-bcm947xx/gpio.h +++ b/target/linux/brcm47xx-2.6/files/include/asm-mips/mach-bcm947xx/gpio.h @@ -18,10 +18,10 @@ static inline void gpio_free(unsigned gpio) static inline int gpio_direction_input(unsigned gpio) { - if (ssb.chipco->dev) - ssb_chipco_gpioouten(&ssb.chipco, 1 << gpio, 0); - else if (ssb.extif->dev) - ssb_extif_gpioouten(&ssb.extif, 1 << gpio, 0); + if (ssb.chipco.dev) + ssb_chipco_gpio_outen(&ssb.chipco, 1 << gpio, 0); + else if (ssb.extif.dev) + ssb_extif_gpio_outen(&ssb.extif, 1 << gpio, 0); else return -EINVAL; return 0; @@ -29,10 +29,10 @@ static inline int gpio_direction_input(unsigned gpio) static inline int gpio_direction_output(unsigned gpio) { - if (ssb.chipco->dev) - ssb_chipco_gpioouten(&ssb.chipco, 1 << gpio, 1 << gpio); - else if (ssb.extif->dev) - ssb_extif_gpioouten(&ssb.extif, 1 << gpio, 1 << gpio); + if (ssb.chipco.dev) + ssb_chipco_gpio_outen(&ssb.chipco, 1 << gpio, 1 << gpio); + else if (ssb.extif.dev) + ssb_extif_gpio_outen(&ssb.extif, 1 << gpio, 1 << gpio); else return -EINVAL; @@ -44,9 +44,9 @@ static inline int gpio_to_irq(unsigned gpio) { struct ssb_device *dev; - dev = ssb.chipco->dev; + dev = ssb.chipco.dev; if (!dev) - dev = ssb.extif->dev; + dev = ssb.extif.dev; if (!dev) return -EINVAL; @@ -61,20 +61,20 @@ static inline int irq_to_gpio(unsigned gpio) static inline int gpio_get_value(unsigned gpio) { - if (ssb.chipco->dev) - return ssb_chipco_gpioin(&ssb.chipco, 1 << gpio) ? 1 : 0; - else if (ssb.extif->dev) - return ssb_extif_gpioin(&ssb.extif, 1 << gpio) ? 1 : 0; + if (ssb.chipco.dev) + return ssb_chipco_gpio_in(&ssb.chipco, 1 << gpio) ? 1 : 0; + else if (ssb.extif.dev) + return ssb_extif_gpio_in(&ssb.extif, 1 << gpio) ? 1 : 0; else return 0; } static inline int gpio_set_value(unsigned gpio, int value) { - if (ssb.chipco->dev) - ssb_chipco_gpioout(&ssb.chipco, 1 << gpio, (value ? 1 << gpio : 0)); - else if (ssb.extif->dev) - ssb_extif_gpioout(&ssb.extif, 1 << gpio, (value ? 1 << gpio : 0)); + if (ssb.chipco.dev) + ssb_chipco_gpio_out(&ssb.chipco, 1 << gpio, (value ? 1 << gpio : 0)); + else if (ssb.extif.dev) + ssb_extif_gpio_out(&ssb.extif, 1 << gpio, (value ? 1 << gpio : 0)); return 0; } -- 2.30.2