diff options
-rw-r--r-- | Documentation/kernel-parameters.txt | 4 | ||||
-rw-r--r-- | Documentation/pm.txt | 2 | ||||
-rw-r--r-- | MAINTAINERS | 2 | ||||
-rw-r--r-- | drivers/acpi/tables.c | 4 |
4 files changed, 8 insertions, 4 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 61a56b100c62..06e362b2d5b8 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -1168,6 +1168,10 @@ running once the system is up. | |||
1168 | Limit processor to maximum C-state | 1168 | Limit processor to maximum C-state |
1169 | max_cstate=9 overrides any DMI blacklist limit. | 1169 | max_cstate=9 overrides any DMI blacklist limit. |
1170 | 1170 | ||
1171 | processor.nocst [HW,ACPI] | ||
1172 | Ignore the _CST method to determine C-states, | ||
1173 | instead using the legacy FADT method | ||
1174 | |||
1171 | prompt_ramdisk= [RAM] List of RAM disks to prompt for floppy disk | 1175 | prompt_ramdisk= [RAM] List of RAM disks to prompt for floppy disk |
1172 | before loading. | 1176 | before loading. |
1173 | See Documentation/ramdisk.txt. | 1177 | See Documentation/ramdisk.txt. |
diff --git a/Documentation/pm.txt b/Documentation/pm.txt index 2ea1149bf6b0..79c0f32a760e 100644 --- a/Documentation/pm.txt +++ b/Documentation/pm.txt | |||
@@ -218,7 +218,7 @@ proceed in the opposite direction. | |||
218 | Q: Who do I contact for additional information about | 218 | Q: Who do I contact for additional information about |
219 | enabling power management for my specific driver/device? | 219 | enabling power management for my specific driver/device? |
220 | 220 | ||
221 | ACPI Development mailing list: acpi-devel@lists.sourceforge.net | 221 | ACPI Development mailing list: linux-acpi@vger.kernel.org |
222 | 222 | ||
223 | System Interface -- OBSOLETE, DO NOT USE! | 223 | System Interface -- OBSOLETE, DO NOT USE! |
224 | ----------------************************* | 224 | ----------------************************* |
diff --git a/MAINTAINERS b/MAINTAINERS index cb536bbed9ff..a01b20ef7e8a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -182,7 +182,7 @@ S: Supported | |||
182 | ACPI | 182 | ACPI |
183 | P: Len Brown | 183 | P: Len Brown |
184 | M: len.brown@intel.com | 184 | M: len.brown@intel.com |
185 | L: acpi-devel@lists.sourceforge.net | 185 | L: linux-acpi@vger.kernel.org |
186 | W: http://acpi.sourceforge.net/ | 186 | W: http://acpi.sourceforge.net/ |
187 | T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git | 187 | T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git |
188 | S: Maintained | 188 | S: Maintained |
diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index a2bf25b05e1c..31d4f3ffc265 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c | |||
@@ -37,7 +37,7 @@ | |||
37 | 37 | ||
38 | #define PREFIX "ACPI: " | 38 | #define PREFIX "ACPI: " |
39 | 39 | ||
40 | #define ACPI_MAX_TABLES 256 | 40 | #define ACPI_MAX_TABLES 128 |
41 | 41 | ||
42 | static char *acpi_table_signatures[ACPI_TABLE_COUNT] = { | 42 | static char *acpi_table_signatures[ACPI_TABLE_COUNT] = { |
43 | [ACPI_TABLE_UNKNOWN] = "????", | 43 | [ACPI_TABLE_UNKNOWN] = "????", |
@@ -74,7 +74,7 @@ struct acpi_table_sdt { | |||
74 | static unsigned long sdt_pa; /* Physical Address */ | 74 | static unsigned long sdt_pa; /* Physical Address */ |
75 | static unsigned long sdt_count; /* Table count */ | 75 | static unsigned long sdt_count; /* Table count */ |
76 | 76 | ||
77 | static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES]; | 77 | static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES] __initdata; |
78 | 78 | ||
79 | void acpi_table_print(struct acpi_table_header *header, unsigned long phys_addr) | 79 | void acpi_table_print(struct acpi_table_header *header, unsigned long phys_addr) |
80 | { | 80 | { |