Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 498cdbfb authored by Ozan Çağlayan's avatar Ozan Çağlayan Committed by Ingo Molnar
Browse files

x86: Add quirk to make Apple MacBookPro5,1 use reboot=pci



MacBookPro5,1 is not able to reboot unless reboot=pci is set.
This patch forces it through a DMI quirk specific to this
device.

Signed-off-by: default avatarOzan Çağlayan <ozan@pardus.org.tr>
LKML-Reference: <1249403971-6543-1-git-send-email-ozan@pardus.org.tr>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 087d7e56
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -405,7 +405,7 @@ EXPORT_SYMBOL(machine_real_restart);
#endif /* CONFIG_X86_32 */

/*
 * Apple MacBook5,2 (2009 MacBook) needs reboot=p
 * Some Apple MacBook and MacBookPro's needs reboot=p to be able to reboot
 */
static int __init set_pci_reboot(const struct dmi_system_id *d)
{
@@ -426,6 +426,14 @@ static struct dmi_system_id __initdata pci_reboot_dmi_table[] = {
			DMI_MATCH(DMI_PRODUCT_NAME, "MacBook5,2"),
		},
	},
	{	/* Handle problems with rebooting on Apple MacBookPro5,1 */
		.callback = set_pci_reboot,
		.ident = "Apple MacBookPro5,1",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
			DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro5,1"),
		},
	},
	{ }
};