[PATCH] fix rebooting on HP nc6120 laptop

Anne NICOLAS <anne.nicolas@mandriva.com> and Andres Kaaber
<andres.kaaber@rescue.ee> reported their HP laptop didn't reboot smoothly.

Signed-off-by: Thierry Vignaud <tvignaud@mandriva.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Thierry Vignaud and committed by Linus Torvalds d91b14c4 5bd0190b

+8
+8
arch/i386/kernel/reboot.c
··· 111 111 DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2400"), 112 112 }, 113 113 }, 114 + { /* Handle problems with rebooting on HP nc6120 */ 115 + .callback = set_bios_reboot, 116 + .ident = "HP Compaq nc6120", 117 + .matches = { 118 + DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), 119 + DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nc6120"), 120 + }, 121 + }, 114 122 { } 115 123 }; 116 124