Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
lib
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
}
8
EXPORT_SYMBOL
(
_bcd2bin
);
9
10
unsigned
char
_bin2bcd
(
unsigned
val
)
11
{
12
return
((val / 10) << 4) + val % 10;
13
}
14
EXPORT_SYMBOL
(
_bin2bcd
);
Generated on Thu Jan 10 2013 14:55:22 for Linux Kernel by
1.8.2