Release 4.11 arch/x86/kernel/pcspeaker.c
#include <linux/platform_device.h>
#include <linux/err.h>
#include <linux/init.h>
static __init int add_pcspkr(void)
{
struct platform_device *pd;
pd = platform_device_register_simple("pcspkr", -1, NULL, 0);
return IS_ERR(pd) ? PTR_ERR(pd) : 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andi Kleen | 31 | 75.61% | 1 | 50.00% |
Akinobu Mita | 10 | 24.39% | 1 | 50.00% |
Total | 41 | 100.00% | 2 | 100.00% |
device_initcall(add_pcspkr);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andi Kleen | 44 | 80.00% | 1 | 50.00% |
Akinobu Mita | 11 | 20.00% | 1 | 50.00% |
Total | 55 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.