cregit-Linux how code gets into the kernel

Release 4.7 lib/bcd.c

Directory: lib
#include <linux/bcd.h>
#include <linux/export.h>


unsigned _bcd2bin(unsigned char val) { return (val & 0x0f) + (val >> 4) * 10; }

Contributors

PersonTokensPropCommitsCommitProp
david brownelldavid brownell2395.83%150.00%
sebastian andrzej siewiorsebastian andrzej siewior14.17%150.00%
Total24100.00%2100.00%

EXPORT_SYMBOL(_bcd2bin);
unsigned char _bin2bcd(unsigned val) { return ((val / 10) << 4) + val % 10; }

Contributors

PersonTokensPropCommitsCommitProp
david brownelldavid brownell2395.83%150.00%
sebastian andrzej siewiorsebastian andrzej siewior14.17%150.00%
Total24100.00%2100.00%

EXPORT_SYMBOL(_bin2bcd);

Overall Contributors

PersonTokensPropCommitsCommitProp
david brownelldavid brownell5992.19%133.33%
sebastian andrzej siewiorsebastian andrzej siewior46.25%133.33%
paul gortmakerpaul gortmaker11.56%133.33%
Total64100.00%3100.00%
Directory: lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}