cregit-Linux how code gets into the kernel

Release 4.15 lib/bcd.c

Directory: lib
// 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; }

Contributors

PersonTokensPropCommitsCommitProp
David Brownell2395.83%150.00%
Sebastian 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 Brownell2395.83%150.00%
Sebastian Andrzej Siewior14.17%150.00%
Total24100.00%2100.00%

EXPORT_SYMBOL(_bin2bcd);

Overall Contributors

PersonTokensPropCommitsCommitProp
David Brownell5990.77%125.00%
Sebastian Andrzej Siewior46.15%125.00%
Greg Kroah-Hartman11.54%125.00%
Paul Gortmaker11.54%125.00%
Total65100.00%4100.00%
Directory: lib
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.