mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 17:49:22 -04:00
MFC rev 198431:
Have the early USB takeover only enabled for i386 and amd64 by default. This also avoids a panic on PowerPC.
This commit is contained in:
parent
dfeca18773
commit
e9fa42544e
1 changed files with 4 additions and 0 deletions
|
|
@ -274,7 +274,11 @@ TUNABLE_INT("hw.pci.honor_msi_blacklist", &pci_honor_msi_blacklist);
|
|||
SYSCTL_INT(_hw_pci, OID_AUTO, honor_msi_blacklist, CTLFLAG_RD,
|
||||
&pci_honor_msi_blacklist, 1, "Honor chipset blacklist for MSI");
|
||||
|
||||
#if defined(__i386__) || defined(__amd64__)
|
||||
static int pci_usb_takeover = 1;
|
||||
#else
|
||||
static int pci_usb_takeover = 0;
|
||||
#endif
|
||||
TUNABLE_INT("hw.pci.usb_early_takeover", &pci_usb_takeover);
|
||||
SYSCTL_INT(_hw_pci, OID_AUTO, usb_early_takeover, CTLFLAG_RD | CTLFLAG_TUN,
|
||||
&pci_usb_takeover, 1, "Enable early takeover of USB controllers.\n\
|
||||
|
|
|
|||
Loading…
Reference in a new issue