Re: [PATCH v4 06/13] ARM64 / ACPI: Introduce early_param for "acpi"

2014-06-27 Thread Graeme Gregory
On Fri, Jun 27, 2014 at 11:07:48AM +0200, Arnd Bergmann wrote: > On Friday 27 June 2014 11:49:29 Hanjun Guo wrote: > > + > > +static int __init parse_acpi(char *arg) > > +{ > > + if (!arg) > > + return -EINVAL; > > + > > + /* "acpi=off" disables both ACPI table parsing and

Re: [PATCH v4 06/13] ARM64 / ACPI: Introduce early_param for "acpi"

2014-06-27 Thread Arnd Bergmann
On Friday 27 June 2014 11:49:29 Hanjun Guo wrote: > + > +static int __init parse_acpi(char *arg) > +{ > + if (!arg) > + return -EINVAL; > + > + /* "acpi=off" disables both ACPI table parsing and interpreter */ > + if (strcmp(arg, "off") == 0) { > + disa

[PATCH v4 06/13] ARM64 / ACPI: Introduce early_param for "acpi"

2014-06-26 Thread Hanjun Guo
From: Al Stone Introduce two early parameters for "acpi", one is the parameter to disable ACPI on ARM64 and another one is acpi=strict to disable out-of-spec workarounds. Reviewed-by: Grant Likely Signed-off-by: Al Stone Signed-off-by: Graeme Gregory Signed-off-by: Hanjun Guo --- Documentat