Message ID | 1460706823-16566-1-git-send-email-broonie@kernel.org (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | Rafael Wysocki |
Headers | show |
On Fri, Apr 15, 2016 at 08:53:41AM +0100, Mark Brown wrote: > If ACPI is selectable it is enabled by default. This is a good choice > for architectures where the overwhelming majority of systems use ACPI > like x86 and IA-64 but is less clear for architectures where it's less > common like ARM64. Change the default selection so that it's only done > explicitly on those architectures where ACPI is universally used. > > Signed-off-by: Mark Brown <broonie@kernel.org> Acked-by: Catalin Marinas <catalin.marinas@arm.com> -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 2016/4/15 15:53, Mark Brown wrote: > If ACPI is selectable it is enabled by default. This is a good choice > for architectures where the overwhelming majority of systems use ACPI > like x86 and IA-64 but is less clear for architectures where it's less > common like ARM64. Change the default selection so that it's only done > explicitly on those architectures where ACPI is universally used. > > Signed-off-by: Mark Brown <broonie@kernel.org> > --- > drivers/acpi/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig > index 82b96ee8624c..2fcf87a6d270 100644 > --- a/drivers/acpi/Kconfig > +++ b/drivers/acpi/Kconfig > @@ -8,7 +8,7 @@ menuconfig ACPI > depends on IA64 || X86 || (ARM64 && EXPERT) > depends on PCI > select PNP > - default y > + default y if (IA64 || X86) > help > Advanced Configuration and Power Interface (ACPI) support for > Linux requires an ACPI-compliant platform (hardware/firmware), Acked-by: Hanjun Guo <hanjun.guo@linaro.org> Thanks Hanjun -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Fri, Apr 15, 2016 at 12:53 AM, Mark Brown <broonie@kernel.org> wrote: > If ACPI is selectable it is enabled by default. This is a good choice > for architectures where the overwhelming majority of systems use ACPI > like x86 and IA-64 but is less clear for architectures where it's less > common like ARM64. Change the default selection so that it's only done > explicitly on those architectures where ACPI is universally used. > > Signed-off-by: Mark Brown <broonie@kernel.org> Acked-by: Olof Johansson <olof@lixom.net> -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hello. On 4/15/2016 10:53 AM, Mark Brown wrote: > If ACPI is selectable it is enabled by default. This is a good choice > for architectures where the overwhelming majority of systems use ACPI > like x86 and IA-64 but is less clear for architectures where it's less > common like ARM64. Change the default selection so that it's only done > explicitly on those architectures where ACPI is universally used. > > Signed-off-by: Mark Brown <broonie@kernel.org> > --- > drivers/acpi/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig > index 82b96ee8624c..2fcf87a6d270 100644 > --- a/drivers/acpi/Kconfig > +++ b/drivers/acpi/Kconfig > @@ -8,7 +8,7 @@ menuconfig ACPI > depends on IA64 || X86 || (ARM64 && EXPERT) > depends on PCI > select PNP > - default y > + default y if (IA64 || X86) Parens not needed. [...] MBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Friday, April 15, 2016 08:53:41 AM Mark Brown wrote: > If ACPI is selectable it is enabled by default. This is a good choice > for architectures where the overwhelming majority of systems use ACPI > like x86 and IA-64 but is less clear for architectures where it's less > common like ARM64. Change the default selection so that it's only done > explicitly on those architectures where ACPI is universally used. > > Signed-off-by: Mark Brown <broonie@kernel.org> > --- > drivers/acpi/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig > index 82b96ee8624c..2fcf87a6d270 100644 > --- a/drivers/acpi/Kconfig > +++ b/drivers/acpi/Kconfig > @@ -8,7 +8,7 @@ menuconfig ACPI > depends on IA64 || X86 || (ARM64 && EXPERT) > depends on PCI > select PNP > - default y > + default y if (IA64 || X86) > help > Advanced Configuration and Power Interface (ACPI) support for > Linux requires an ACPI-compliant platform (hardware/firmware), > Everyone seems to be fine with the whole series, so I'm going to apply it. Thanks, Rafael -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 82b96ee8624c..2fcf87a6d270 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig @@ -8,7 +8,7 @@ menuconfig ACPI depends on IA64 || X86 || (ARM64 && EXPERT) depends on PCI select PNP - default y + default y if (IA64 || X86) help Advanced Configuration and Power Interface (ACPI) support for Linux requires an ACPI-compliant platform (hardware/firmware),
If ACPI is selectable it is enabled by default. This is a good choice for architectures where the overwhelming majority of systems use ACPI like x86 and IA-64 but is less clear for architectures where it's less common like ARM64. Change the default selection so that it's only done explicitly on those architectures where ACPI is universally used. Signed-off-by: Mark Brown <broonie@kernel.org> --- drivers/acpi/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)