diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2008-04-22 18:28:47 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-04-23 18:41:14 -0400 |
commit | 4cfe02fabbb87108d7d06d2335429025ca84e616 (patch) | |
tree | 237553a033c7956e365b9edaa061e15173ea2299 /drivers/pci/pcie | |
parent | 3dc5063786b273f1aee545844f6bd4e9651ebffe (diff) |
PCI Express ASPM support should default to 'No'
Running 'make oldconfig' I just noticed that PCIEASPM defaults to
'y' in Kconfig even though the feature is both experimental and the
help text recommends that if you are unsure you say 'n'.
It seems to me that this really should default to 'n', not 'y' at the
moment.
The following patch makes that change. Please consider applying.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pcie')
-rw-r--r-- | drivers/pci/pcie/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pcie/Kconfig b/drivers/pci/pcie/Kconfig index 25b04fb2517d..5a0c6ad53f8e 100644 --- a/drivers/pci/pcie/Kconfig +++ b/drivers/pci/pcie/Kconfig | |||
@@ -33,7 +33,7 @@ source "drivers/pci/pcie/aer/Kconfig" | |||
33 | config PCIEASPM | 33 | config PCIEASPM |
34 | bool "PCI Express ASPM support(Experimental)" | 34 | bool "PCI Express ASPM support(Experimental)" |
35 | depends on PCI && EXPERIMENTAL && PCIEPORTBUS | 35 | depends on PCI && EXPERIMENTAL && PCIEPORTBUS |
36 | default y | 36 | default n |
37 | help | 37 | help |
38 | This enables PCI Express ASPM (Active State Power Management) and | 38 | This enables PCI Express ASPM (Active State Power Management) and |
39 | Clock Power Management. ASPM supports state L0/L0s/L1. | 39 | Clock Power Management. ASPM supports state L0/L0s/L1. |