ipmi: do not probe ACPI devices if si_tryacpi is unset
Extend the tryacpi module parameter to turn off acpi_ipmi_probe such that hard-coded options (type, ports, address, etc.) have complete control over the smi_info data structures setup by the driver. Signed-off-by: Joe Lawrence <joe.lawrence@stratus.com> Signed-off-by: Corey Minyard <cminyard@mvista.com>
This commit is contained in:
parent
d9dffd2a0b
commit
9f0257b39c
|
@ -2690,6 +2690,9 @@ static int acpi_ipmi_probe(struct platform_device *dev)
|
||||||
unsigned long long tmp;
|
unsigned long long tmp;
|
||||||
int rv = -EINVAL;
|
int rv = -EINVAL;
|
||||||
|
|
||||||
|
if (!si_tryacpi)
|
||||||
|
return 0;
|
||||||
|
|
||||||
handle = ACPI_HANDLE(&dev->dev);
|
handle = ACPI_HANDLE(&dev->dev);
|
||||||
if (!handle)
|
if (!handle)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
Loading…
Reference in New Issue