diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-02 15:49:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-02 15:49:19 -0400 |
commit | 9c8680e2cfbb60d5075f8caaf9d98276120bcc78 (patch) | |
tree | 1957cff26a46271d5b63a3c209629ddd7f9fe124 /arch/powerpc/kernel | |
parent | f900e5824a44ab65437b4f7e7c610b72f94820c5 (diff) | |
parent | b9ec4e109d7a342e83e1210e05797222e36555c3 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/dtor/input
* master.kernel.org:/pub/scm/linux/kernel/git/dtor/input: (26 commits)
Input: add support for Braille devices
Input: synaptics - limit rate to 40pps on Toshiba Protege M300
Input: gamecon - add SNES mouse support
Input: make modalias code respect allowed buffer size
Input: convert /proc handling to seq_file
Input: limit attributes' output to PAGE_SIZE
Input: gameport - fix memory leak
Input: serio - fix memory leak
Input: zaurus keyboard driver updates
Input: i8042 - fix logic around pnp_register_driver()
Input: ns558 - fix logic around pnp_register_driver()
Input: pcspkr - separate device and driver registration
Input: atkbd - allow disabling on X86_PC (if EMBEDDED)
Input: atkbd - disable softrepeat for dumb keyboards
Input: atkbd - fix complaints about 'releasing unknown key 0x7f'
Input: HID - fix duplicate key mapping for Logitech UltraX remote
Input: use kzalloc() throughout the code
Input: fix input_free_device() implementation
Input: initialize serio and gameport at subsystem level
Input: uinput - semaphore to mutex conversion
...
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/setup-common.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index c607f3b9ca17..1d93e73a7003 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/reboot.h> | 21 | #include <linux/reboot.h> |
22 | #include <linux/delay.h> | 22 | #include <linux/delay.h> |
23 | #include <linux/initrd.h> | 23 | #include <linux/initrd.h> |
24 | #include <linux/platform_device.h> | ||
24 | #include <linux/ide.h> | 25 | #include <linux/ide.h> |
25 | #include <linux/seq_file.h> | 26 | #include <linux/seq_file.h> |
26 | #include <linux/ioport.h> | 27 | #include <linux/ioport.h> |
@@ -462,6 +463,29 @@ static int __init early_xmon(char *p) | |||
462 | early_param("xmon", early_xmon); | 463 | early_param("xmon", early_xmon); |
463 | #endif | 464 | #endif |
464 | 465 | ||
466 | static __init int add_pcspkr(void) | ||
467 | { | ||
468 | struct device_node *np; | ||
469 | struct platform_device *pd; | ||
470 | int ret; | ||
471 | |||
472 | np = of_find_compatible_node(NULL, NULL, "pnpPNP,100"); | ||
473 | of_node_put(np); | ||
474 | if (!np) | ||
475 | return -ENODEV; | ||
476 | |||
477 | pd = platform_device_alloc("pcspkr", -1); | ||
478 | if (!pd) | ||
479 | return -ENOMEM; | ||
480 | |||
481 | ret = platform_device_add(pd); | ||
482 | if (ret) | ||
483 | platform_device_put(pd); | ||
484 | |||
485 | return ret; | ||
486 | } | ||
487 | device_initcall(add_pcspkr); | ||
488 | |||
465 | void probe_machine(void) | 489 | void probe_machine(void) |
466 | { | 490 | { |
467 | extern struct machdep_calls __machine_desc_start; | 491 | extern struct machdep_calls __machine_desc_start; |