You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
297 B
16 lines
297 B
7 months ago
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include <linux/bcd.h>
|
||
|
#include <linux/export.h>
|
||
|
|
||
|
unsigned _bcd2bin(unsigned char val)
|
||
|
{
|
||
|
return (val & 0x0f) + (val >> 4) * 10;
|
||
|
}
|
||
|
EXPORT_SYMBOL(_bcd2bin);
|
||
|
|
||
|
unsigned char _bin2bcd(unsigned val)
|
||
|
{
|
||
|
return ((val / 10) << 4) + val % 10;
|
||
|
}
|
||
|
EXPORT_SYMBOL(_bin2bcd);
|