projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'usb-3.4-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[platform/adaptation/renesas_rcar/renesas_kernel.git]
/
include
/
linux
/
bcd.h
1
#ifndef _BCD_H
2
#define _BCD_H
3
4
#include <linux/compiler.h>
5
6
unsigned bcd2bin(unsigned char val) __attribute_const__;
7
unsigned char bin2bcd(unsigned val) __attribute_const__;
8
9
#endif /* _BCD_H */