i2c_init(int speed, int slaveaddr)
 {
        unsigned int n, m, freq, margin, power;
-       unsigned int actualFreq, actualN=0, actualM=0;
+       unsigned int actualFreq, actualN = 0, actualM = 0;
        unsigned int control, status;
        unsigned int minMargin = 0xffffffff;
        unsigned int tclk = 125000000;
 
        DP(puts("i2c_init\n"));
 
-       for(n = 0 ; n < 8 ; n++)
-       {
-               for(m = 0 ; m < 16 ; m++)
-               {
+       for (n = 0 ; n < 8 ; n++) {
+               for (m = 0 ; m < 16 ; m++) {
                        power = 2<<n; /* power = 2^(n+1) */
                        freq = tclk/(10*(m+1)*power);
                        if (speed > freq)
                                margin = speed - freq;
                        else
                                margin = freq - speed;
-                       if(margin < minMargin)
-                       {
+                       if (margin < minMargin) {
                                minMargin   = margin;
                                actualFreq  = freq;
                                actualN     = n;
                udelay(I2C_DELAY);
                if (count > 20) {
                        GT_REG_WRITE(I2C_CONTROL, (0x1 << 4)); /*stop*/
-                       return (status);
+                       return status;
                }
                GT_REG_READ(I2C_STATUS_BAUDE_RATE, &status);
                count++;
        }
 
-       return (0);
+       return 0;
 }
 
 static uchar
 
        /* Output slave address */
 
-       if (ten_bit) {
+       if (ten_bit)
                bits = 10;
-       }
 
        data = (dev_addr << 1);
        /* set the read bit */
                udelay(I2C_DELAY);
                if (count > 20) {
                        GT_REG_WRITE(I2C_CONTROL, (0x1 << 4)); /*stop*/
-                       return(status);
+                       return status;
                }
                GT_REG_READ(I2C_STATUS_BAUDE_RATE, &status);
                count++;
 
        if (bits == 10) {
                printf("10 bit I2C addressing not yet implemented\n");
-               return (0xff);
+               return 0xff;
        }
 
-       return (0);
+       return 0;
 }
 
 static uchar
-i2c_get_data(uchar* return_data, int len) {
+i2c_get_data(uchar *return_data, int len) {
 
        unsigned int data, status = 0;
        int count = 0;
                count++;
                while ((status & 0xff) != 0x50) {
                        udelay(I2C_DELAY);
-                       if(count > 2) {
+                       if (count > 2) {
                                GT_REG_WRITE(I2C_CONTROL, (0x1 << 4)); /*stop*/
                                return 0;
                        }
        RESET_REG_BITS(I2C_CONTROL, BIT2|BIT3);
        while ((status & 0xff) != 0x58) {
                udelay(I2C_DELAY);
-               if(count > 200) {
+               if (count > 200) {
                        GT_REG_WRITE(I2C_CONTROL, (0x1 << 4)); /*stop*/
-                       return (status);
+                       return status;
                }
                GT_REG_READ(I2C_STATUS_BAUDE_RATE, &status);
                count++;
        }
        GT_REG_WRITE(I2C_CONTROL, (0x1 << 4)); /* stop */
 
-       return (0);
+       return 0;
 }
 
 static uchar
                count++;
                while ((status & 0xff) != 0x28) {
                        udelay(I2C_DELAY);
-                       if(count > 20) {
+                       if (count > 20) {
                                GT_REG_WRITE(I2C_CONTROL, (0x1 << 4)); /*stop*/
-                               return (status);
+                               return status;
                        }
                        GT_REG_READ(I2C_STATUS_BAUDE_RATE, &status);
                        count++;
 
        udelay(I2C_DELAY * 10);
 
-       return (0);
+       return 0;
 }
 
 static uchar
                return status;
        }
 
-       return (0);
+       return 0;
 }
 
 uchar
-i2c_read(uchar dev_addr, unsigned int offset, int len, uchar* data,
+i2c_read(uchar dev_addr, unsigned int offset, int len, uchar *data,
         int ten_bit)
 {
        uchar status = 0;
 
        DP(puts("i2c_read\n"));
 
-       i2c_init(i2cFreq,0);
+       i2c_init(i2cFreq, 0);
 
        status = i2c_start();
 
                return status;
        }
 
-       i2c_init(i2cFreq,0);
+       i2c_init(i2cFreq, 0);
 
        status = i2c_start();
        if (status) {