Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
bcd.c
Go to the documentation of this file.
1 #include <linux/bcd.h>
2 #include <linux/export.h>
3 
4 unsigned _bcd2bin(unsigned char val)
5 {
6  return (val & 0x0f) + (val >> 4) * 10;
7 }
9 
10 unsigned char _bin2bcd(unsigned val)
11 {
12  return ((val / 10) << 4) + val % 10;
13 }