]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/fat.h
Big white-space cleanup.
[karo-tx-uboot.git] / include / fat.h
index f993ccab1c2c2a20d4340dc162dbef9cd297256a..59de3fbec55bd434798e8906b73ba798879529cb 100644 (file)
 #else
 #define FAT2CPU16(x)   ((((x) & 0x00ff) << 8) | (((x) & 0xff00) >> 8))
 #define FAT2CPU32(x)   ((((x) & 0x000000ff) << 24)  |  \
-                        (((x) & 0x0000ff00) << 8)  |   \
+                        (((x) & 0x0000ff00) << 8)  |   \
                         (((x) & 0x00ff0000) >> 8)  |   \
                         (((x) & 0xff000000) >> 24))
 #endif