#include #include 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); ef='https://git.distanz.ch/cgit.cgi/linux/net-next.git/atom/tools/perf/util/annotate.c?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
value='35'>35
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
Diffstat (limited to 'tools/kvm')