diff options
author | noz <noz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-30 23:10:22 +0000 |
---|---|---|
committer | noz <noz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-30 23:10:22 +0000 |
commit | a4fd36a6596de31b17fd27a6e462fd514c5dc072 (patch) | |
tree | 28d8e90ed9ff56d8427b3e885ab74365d9577ae3 /target/linux/brcm47xx-2.6/files/include/asm-mips | |
parent | 8c89eaecce01e502dabf7610d29e2a2016d8238a (diff) |
Bring mach-bcm947xx/gpio.h into line with new SSB code, as per #1640
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7814 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm47xx-2.6/files/include/asm-mips')
-rw-r--r-- | target/linux/brcm47xx-2.6/files/include/asm-mips/mach-bcm947xx/gpio.h | 36 |
1 files 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 2999a255f..9a67e8e76 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; } |