#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); ext.git/atom/net/tipc/name_distr.c?h=master' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
inux/net-next.git/diff/sound/mips?h=nds-private-remove&id=3f67790d2b7e322bcf363ec717085dd78c3ea7cd&id2=206c4720092d2a24bfefc041b377e889a220ffbf'>mips
diff options
AgeCommit message (Expand)AuthorFilesLines
context:
space:
mode:
Diffstat (limited to 'sound/mips')