Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Permission is hereby granted to copy, modify and redistribute this code |
| 2 | * in terms of the GNU Library General Public License, Version 2 or later, |
| 3 | * at your option. |
| 4 | */ |
| 5 | |
| 6 | /* macros to translate to/from binary and binary-coded decimal (frequently |
| 7 | * found in RTC chips). |
| 8 | */ |
| 9 | |
| 10 | #ifndef _BCD_H |
| 11 | #define _BCD_H |
| 12 | |
David Brownell | d3de851 | 2008-07-23 21:30:37 -0700 | [diff] [blame] | 13 | #include <linux/compiler.h> |
| 14 | |
| 15 | unsigned bcd2bin(unsigned char val) __attribute_const__; |
| 16 | unsigned char bin2bcd(unsigned val) __attribute_const__; |
| 17 | |
| 18 | #define BCD2BIN(val) bcd2bin(val) |
| 19 | #define BIN2BCD(val) bin2bcd(val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | /* backwards compat */ |
| 22 | #define BCD_TO_BIN(val) ((val)=BCD2BIN(val)) |
| 23 | #define BIN_TO_BCD(val) ((val)=BIN2BCD(val)) |
| 24 | |
| 25 | #endif /* _BCD_H */ |