]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/spi/mpc8xxx_spi.c
Coding Style cleanup: replace leading SPACEs by TABs
[karo-tx-uboot.git] / drivers / spi / mpc8xxx_spi.c
index 348361a7fd078d1cbcc5f1a0f926faa2a7173c03..0d59c361513319f796ac6bf82671616d07b67625 100644 (file)
@@ -110,10 +110,10 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
                if (bitlen <= 16) {
                        if (bitlen <= 4)
                                spi->mode = (spi->mode & 0xff0fffff) |
-                                           (3 << 20);
+                                           (3 << 20);
                        else
                                spi->mode = (spi->mode & 0xff0fffff) |
-                                           ((bitlen - 1) << 20);
+                                           ((bitlen - 1) << 20);
                } else {
                        spi->mode = (spi->mode & 0xff0fffff);
                        /* Set up the next iteration if sending > 32 bits */