Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: aiboost panics my kernel



Juan Romero Pardines wrote:
if (elem->Type != ACPI_TYPE_ANY ||
    elem->Type != ACPI_TYPE_LOCAL_REFERENCE)) {
    ...
}

That can't be what you intend :)

Simply change it to:

if (elem->Type != ACPI_TYPE_LOCAL_REFERENCE) {
    ...
}

Cheers,
Jared


Home | Main Index | Thread Index | Old Index