svn commit: r277971 - in head/sys/mips: atheros cavium rt305x

Luiz Otavio O Souza loos at FreeBSD.org
Sat Jan 31 12:43:31 UTC 2015


Author: loos
Date: Sat Jan 31 12:43:30 2015
New Revision: 277971
URL: https://svnweb.freebsd.org/changeset/base/277971

Log:
  Replace spaces with tabs, this will easier future changes on softc
  structure.
  
  No functional changes.

Modified:
  head/sys/mips/atheros/ar71xx_gpiovar.h
  head/sys/mips/cavium/octeon_gpiovar.h
  head/sys/mips/rt305x/rt305x_gpiovar.h

Modified: head/sys/mips/atheros/ar71xx_gpiovar.h
==============================================================================
--- head/sys/mips/atheros/ar71xx_gpiovar.h	Sat Jan 31 12:27:40 2015	(r277970)
+++ head/sys/mips/atheros/ar71xx_gpiovar.h	Sat Jan 31 12:43:30 2015	(r277971)
@@ -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;
 };

Modified: head/sys/mips/cavium/octeon_gpiovar.h
==============================================================================
--- head/sys/mips/cavium/octeon_gpiovar.h	Sat Jan 31 12:27:40 2015	(r277970)
+++ head/sys/mips/cavium/octeon_gpiovar.h	Sat Jan 31 12:43:30 2015	(r277971)
@@ -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];
 };

Modified: head/sys/mips/rt305x/rt305x_gpiovar.h
==============================================================================
--- head/sys/mips/rt305x/rt305x_gpiovar.h	Sat Jan 31 12:27:40 2015	(r277970)
+++ head/sys/mips/rt305x/rt305x_gpiovar.h	Sat Jan 31 12:43:30 2015	(r277971)
@@ -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;


More information about the svn-src-all mailing list