diff options
author | loos <loos@FreeBSD.org> | 2015-01-31 12:43:30 +0000 |
---|---|---|
committer | loos <loos@FreeBSD.org> | 2015-01-31 12:43:30 +0000 |
commit | b76f0f0c1fa0056e96b86159da1bc4f3fc16f29b (patch) | |
tree | 7e9f57914ea89af71398114917ca21f6078e732c | |
parent | 871996ee6ee293bdfe7f29e1cf6d5d69515817de (diff) | |
download | FreeBSD-src-b76f0f0c1fa0056e96b86159da1bc4f3fc16f29b.zip FreeBSD-src-b76f0f0c1fa0056e96b86159da1bc4f3fc16f29b.tar.gz |
Replace spaces with tabs, this will easier future changes on softc
structure.
No functional changes.
-rw-r--r-- | sys/mips/atheros/ar71xx_gpiovar.h | 12 | ||||
-rw-r--r-- | sys/mips/cavium/octeon_gpiovar.h | 10 | ||||
-rw-r--r-- | sys/mips/rt305x/rt305x_gpiovar.h | 12 |
3 files changed, 17 insertions, 17 deletions
diff --git a/sys/mips/atheros/ar71xx_gpiovar.h b/sys/mips/atheros/ar71xx_gpiovar.h index a1c6e2f..32337cc 100644 --- a/sys/mips/atheros/ar71xx_gpiovar.h +++ b/sys/mips/atheros/ar71xx_gpiovar.h @@ -57,12 +57,12 @@ struct ar71xx_gpio_softc { device_t dev; - struct mtx gpio_mtx; - struct resource *gpio_mem_res; - int gpio_mem_rid; - struct resource *gpio_irq_res; - int gpio_irq_rid; - void *gpio_ih; + struct mtx gpio_mtx; + struct resource *gpio_mem_res; + int gpio_mem_rid; + struct resource *gpio_irq_res; + int gpio_irq_rid; + void *gpio_ih; int gpio_npins; struct gpio_pin *gpio_pins; }; diff --git a/sys/mips/cavium/octeon_gpiovar.h b/sys/mips/cavium/octeon_gpiovar.h index 5717b7c..a9b814f 100644 --- a/sys/mips/cavium/octeon_gpiovar.h +++ b/sys/mips/cavium/octeon_gpiovar.h @@ -43,11 +43,11 @@ struct octeon_gpio_softc { device_t dev; - struct mtx gpio_mtx; - struct resource *gpio_irq_res[OCTEON_GPIO_IRQS]; - int gpio_irq_rid[OCTEON_GPIO_IRQS]; - void *gpio_ih[OCTEON_GPIO_IRQS]; - void *gpio_intr_cookies[OCTEON_GPIO_IRQS]; + struct mtx gpio_mtx; + struct resource *gpio_irq_res[OCTEON_GPIO_IRQS]; + int gpio_irq_rid[OCTEON_GPIO_IRQS]; + void *gpio_ih[OCTEON_GPIO_IRQS]; + void *gpio_intr_cookies[OCTEON_GPIO_IRQS]; int gpio_npins; struct gpio_pin gpio_pins[OCTEON_GPIO_PINS]; }; diff --git a/sys/mips/rt305x/rt305x_gpiovar.h b/sys/mips/rt305x/rt305x_gpiovar.h index ed79e2d..85cd6f6 100644 --- a/sys/mips/rt305x/rt305x_gpiovar.h +++ b/sys/mips/rt305x/rt305x_gpiovar.h @@ -30,12 +30,12 @@ struct rt305x_gpio_softc { device_t dev; - struct mtx gpio_mtx; - struct resource *gpio_mem_res; - int gpio_mem_rid; - struct resource *gpio_irq_res; - int gpio_irq_rid; - void *gpio_ih; + struct mtx gpio_mtx; + struct resource *gpio_mem_res; + int gpio_mem_rid; + struct resource *gpio_irq_res; + int gpio_irq_rid; + void *gpio_ih; int gpio_npins; struct gpio_pin gpio_pins[NGPIO]; int reset_gpio; |