dm: Remove unnecessary types in bcd.h
authorSimon Glass <sjg@chromium.org>
Mon, 20 Apr 2015 18:37:20 +0000 (12:37 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 6 May 2015 02:58:20 +0000 (20:58 -0600)
We don't need to use u8, and if we avoid it, it isn't so much of a problem
that rtc.h includes this header. With this change we can include rtc.h from
sandbox files.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/bcd.h

index af4aa9c7baf8ace2f80e0a0ecb043d40d8b3f144..9ecd328284e9de20a293a96dff9bc655c6d529ea 100644 (file)
 #ifndef _BCD_H
 #define _BCD_H
 
-#include <linux/types.h>
-
-static inline unsigned int bcd2bin(u8 val)
+static inline unsigned int bcd2bin(unsigned int val)
 {
-       return ((val) & 0x0f) + ((val) >> 4) * 10;
+       return ((val) & 0x0f) + ((val & 0xff) >> 4) * 10;
 }
 
-static inline u8 bin2bcd (unsigned int val)
+static inline unsigned int bin2bcd(unsigned int val)
 {
        return (((val / 10) << 4) | (val % 10));
 }