drivers/input : move input drivers to drivers/input
[oweals/u-boot.git] / dtt / lm81.c
index c83a3cdf6367266fbf16ebda77214d18dc960ce4..03bc53d58c421e631ffe01210b9b1fa848b25a4f 100644 (file)
@@ -134,8 +134,8 @@ int dtt_init (void)
 } /* dtt_init() */
 
 #define TEMP_FROM_REG(temp) \
-   ((temp)<256?((((temp)&0x1fe) >> 1) * 10)      + ((temp) & 1) * 5:  \
-               ((((temp)&0x1fe) >> 1) -255) * 10 - ((temp) & 1) * 5)  \
+   ((temp)<256?((((temp)&0x1fe) >> 1) * 10)     + ((temp) & 1) * 5:  \
+              ((((temp)&0x1fe) >> 1) -255) * 10 - ((temp) & 1) * 5)  \
 
 int dtt_get_temp(int sensor)
 {