added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / x86 / kernel / pcspeaker.c
bloba311ffcaad165c13032fc8972abc4bab44d251b4
1 #include <linux/platform_device.h>
2 #include <linux/err.h>
3 #include <linux/init.h>
5 static __init int add_pcspkr(void)
7 struct platform_device *pd;
9 pd = platform_device_register_simple("pcspkr", -1, NULL, 0);
11 return IS_ERR(pd) ? PTR_ERR(pd) : 0;
13 device_initcall(add_pcspkr);