Release 4.14 arch/x86/kernel/pcspeaker.c
// SPDX-License-Identifier: GPL-2.0
#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 | 78.57% | 1 | 33.33% |
Akinobu Mita | 11 | 19.64% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 1.79% | 1 | 33.33% |
Total | 56 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.