Indentation: Various indentation fixes
authorVikram Narayanan <vikram186@gmail.com>
Mon, 26 Dec 2011 17:22:01 +0000 (22:52 +0530)
committerMarc Jones <marcj303@gmail.com>
Thu, 5 Jan 2012 16:34:52 +0000 (17:34 +0100)
Fixed indentation using indent tool in the src/drivers/i2c tree

Change-Id: I5b396e5753544aff13ac5d16afc59e193a6b1da1
Signed-off-by: Vikram Narayanan <vikram186@gmail.com>
Reviewed-on: http://review.coreboot.org/506
Tested-by: build bot (Jenkins)
Reviewed-by: Kerry Sheh <shekairui@gmail.com>
Reviewed-by: Marc Jones <marcj303@gmail.com>
src/drivers/i2c/adm1026/adm1026.c
src/drivers/i2c/adm1027/adm1027.c
src/drivers/i2c/adt7463/adt7463.c
src/drivers/i2c/i2cmux/i2cmux.c
src/drivers/i2c/i2cmux2/i2cmux2.c
src/drivers/i2c/lm63/lm63.c

index 14b07aa90caf87a8135023245feffc512e9fb3dc..1aaae52e6d265e00ad6badb9b5567d3780c1214b 100644 (file)
@@ -7,7 +7,7 @@
 #include <cpu/x86/msr.h>
 #include "chip.h"
 
-#define ADM1026_DEVICE 0x2d /* Either 0x2c or 0x2d or 0x2e */
+#define ADM1026_DEVICE 0x2d    /* Either 0x2c or 0x2d or 0x2e */
 #define ADM1026_REG_CONFIG1 0x00
 #define CFG1_MONITOR     0x01
 #define CFG1_INT_ENABLE  0x02
@@ -24,38 +24,38 @@ static void adm1026_enable_monitoring(device_t dev);
 
 static void adm1026_init(device_t dev)
 {
-       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C)
-       {
-               if(ops_smbus_bus(get_pbus_smbus(dev))) {
-                       if( dev->bus->dev->path.type == DEVICE_PATH_I2C) smbus_set_link(dev); // it is under mux
+       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
+               if (ops_smbus_bus(get_pbus_smbus(dev))) {
+                       if (dev->bus->dev->path.type == DEVICE_PATH_I2C)
+                               smbus_set_link(dev);    // it is under mux
                        adm1026_enable_monitoring(dev);
                }
-
        }
-
 }
+
 static void adm1026_enable_monitoring(device_t dev)
 {
-        int result;
-        result = smbus_read_byte(dev, ADM1026_REG_CONFIG1);
+       int result;
+       result = smbus_read_byte(dev, ADM1026_REG_CONFIG1);
 
-        result = (result | CFG1_MONITOR) & ~(CFG1_INT_CLEAR | CFG1_RESET);
-        result = smbus_write_byte(dev, ADM1026_REG_CONFIG1, result);
+       result = (result | CFG1_MONITOR) & ~(CFG1_INT_CLEAR | CFG1_RESET);
+       result = smbus_write_byte(dev, ADM1026_REG_CONFIG1, result);
 
-        result = smbus_read_byte(dev, ADM1026_REG_CONFIG1);
-        if (!(result & CFG1_MONITOR)) {
-                printk(BIOS_DEBUG, "ADM1026: monitoring would not enable");
-        }
+       result = smbus_read_byte(dev, ADM1026_REG_CONFIG1);
+       if (!(result & CFG1_MONITOR)) {
+               printk(BIOS_DEBUG, "ADM1026: monitoring would not enable");
+       }
 }
+
 static void adm1026_noop(device_t dummy)
 {
 }
 
 static struct device_operations adm1026_operations = {
-        .read_resources   = adm1026_noop,
-        .set_resources    = adm1026_noop,
-        .enable_resources = adm1026_noop,
-        .init             = adm1026_init,
+       .read_resources = adm1026_noop,
+       .set_resources = adm1026_noop,
+       .enable_resources = adm1026_noop,
+       .init = adm1026_init,
 };
 
 static void enable_dev(struct device *dev)
index bca2c0dbc835d67756d8af0576305f437ea28870..516a8897d82c4ab534499748be61bf2502c02768 100644 (file)
@@ -47,7 +47,6 @@ static void adm1027_init(device_t dev)
                                smbus_set_link(dev);    // it is under mux
                        adm1027_enable_monitoring(dev);
                }
-
        }
 }
 
@@ -56,10 +55,10 @@ static void adm1027_noop(device_t dummy)
 }
 
 static struct device_operations adm1027_operations = {
-       .read_resources         = adm1027_noop,
-       .set_resources          = adm1027_noop,
-       .enable_resources       = adm1027_noop,
-       .init                   = adm1027_init,
+       .read_resources = adm1027_noop,
+       .set_resources = adm1027_noop,
+       .enable_resources = adm1027_noop,
+       .init = adm1027_init,
 };
 
 static void enable_dev(struct device *dev)
index 25a65c837174754c1b2bd83da7d65fbb0226e951..3967bf712e5df5bad2590114b992ccc0dd844247 100644 (file)
@@ -91,10 +91,10 @@ static void adt7463_noop(device_t dummy)
 }
 
 static struct device_operations adt7463_operations = {
-       .read_resources         = adt7463_noop,
-       .set_resources          = adt7463_noop,
-       .enable_resources       = adt7463_noop,
-       .init                   = adt7463_init,
+       .read_resources = adt7463_noop,
+       .set_resources = adt7463_noop,
+       .enable_resources = adt7463_noop,
+       .init = adt7463_init,
 };
 
 static void enable_dev(struct device *dev)
index 14c52ccfd351963b4ce1169b874a087aaabe3072..44bf390028d1e3338f7165f005b685b977e0163c 100644 (file)
@@ -9,32 +9,30 @@
 
 static void i2cmux_set_link(device_t dev, unsigned int link)
 {
-       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C)
-       {
-               if(ops_smbus_bus(get_pbus_smbus(dev))) {
-                       smbus_write_byte(dev, 0x01, 1<<link); // output value
-                       smbus_write_byte(dev, 0x03, 0); // all output
+       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
+               if (ops_smbus_bus(get_pbus_smbus(dev))) {
+                       smbus_write_byte(dev, 0x01, 1 << link); // output value
+                       smbus_write_byte(dev, 0x03, 0); // all output
                }
-
        }
-
 }
+
 static void i2cmux_noop(device_t dummy)
 {
 }
 
 static struct device_operations i2cmux_operations = {
-        .read_resources   = i2cmux_noop,
-        .set_resources    = i2cmux_noop,
-        .enable_resources = i2cmux_noop,
-        .init             = i2cmux_noop,
-       .scan_bus         = scan_static_bus,
-       .set_link         = i2cmux_set_link,
+       .read_resources = i2cmux_noop,
+       .set_resources = i2cmux_noop,
+       .enable_resources = i2cmux_noop,
+       .init = i2cmux_noop,
+       .scan_bus = scan_static_bus,
+       .set_link = i2cmux_set_link,
 };
 
 static void enable_dev(struct device *dev)
 {
-       if(dev->link_list != NULL)
+       if (dev->link_list != NULL)
                dev->ops = &i2cmux_operations;
 }
 
index c0f8e7087829e10517b7ed4c2001993120462a60..dc8ec25d896330ff80d050d1acd602105bab0fa3 100644 (file)
@@ -9,31 +9,29 @@
 
 static void i2cmux2_set_link(device_t dev, unsigned int link)
 {
-       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C)
-       {
-               if(ops_smbus_bus(get_pbus_smbus(dev))) {
-                       smbus_send_byte(dev, link); // output value
+       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
+               if (ops_smbus_bus(get_pbus_smbus(dev))) {
+                       smbus_send_byte(dev, link);     // output value
                }
-
        }
-
 }
+
 static void i2cmux2_noop(device_t dummy)
 {
 }
 
 static struct device_operations i2cmux2_operations = {
-        .read_resources   = i2cmux2_noop,
-        .set_resources    = i2cmux2_noop,
-        .enable_resources = i2cmux2_noop,
-        .init             = i2cmux2_noop,
-       .scan_bus         = scan_static_bus,
-       .set_link         = i2cmux2_set_link,
+       .read_resources = i2cmux2_noop,
+       .set_resources = i2cmux2_noop,
+       .enable_resources = i2cmux2_noop,
+       .init = i2cmux2_noop,
+       .scan_bus = scan_static_bus,
+       .set_link = i2cmux2_set_link,
 };
 
 static void enable_dev(struct device *dev)
 {
-       if(dev->link_list != NULL)
+       if (dev->link_list != NULL)
                dev->ops = &i2cmux2_operations;
 }
 
index 05302a68da712628b81406aab0c2c331e67752e5..d98a245de557b40f95987f9deec30c6eb07d1a3a 100644 (file)
@@ -7,32 +7,30 @@
 #include <cpu/x86/msr.h>
 #include "chip.h"
 
-
 static void lm63_init(device_t dev)
 {
        int result;
-       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C)
-       {
-               if(ops_smbus_bus(get_pbus_smbus(dev))) {
-                       if( dev->bus->dev->path.type == DEVICE_PATH_I2C) smbus_set_link(dev); // it is under mux
+       if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
+               if (ops_smbus_bus(get_pbus_smbus(dev))) {
+                       if (dev->bus->dev->path.type == DEVICE_PATH_I2C)
+                               smbus_set_link(dev);    // it is under mux
                        result = smbus_read_byte(dev, 0x03);
-//                     result &= ~0x04;
+//                      result &= ~0x04;
                        result |= 0x04;
-                       smbus_write_byte(dev, 0x03, result & 0xff); // config lm63
+                       smbus_write_byte(dev, 0x03, result & 0xff);     // config lm63
                }
-
        }
-
 }
+
 static void lm63_noop(device_t dummy)
 {
 }
 
 static struct device_operations lm63_operations = {
-        .read_resources   = lm63_noop,
-        .set_resources    = lm63_noop,
-        .enable_resources = lm63_noop,
-        .init             = lm63_init,
+       .read_resources = lm63_noop,
+       .set_resources = lm63_noop,
+       .enable_resources = lm63_noop,
+       .init = lm63_init,
 };
 
 static void enable_dev(struct device *dev)