aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/kernel-parameters.txt4
-rw-r--r--Documentation/pm.txt2
-rw-r--r--MAINTAINERS2
-rw-r--r--drivers/acpi/tables.c4
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.
218Q: Who do I contact for additional information about 218Q: 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
221ACPI Development mailing list: acpi-devel@lists.sourceforge.net 221ACPI Development mailing list: linux-acpi@vger.kernel.org
222 222
223System Interface -- OBSOLETE, DO NOT USE! 223System 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
182ACPI 182ACPI
183P: Len Brown 183P: Len Brown
184M: len.brown@intel.com 184M: len.brown@intel.com
185L: acpi-devel@lists.sourceforge.net 185L: linux-acpi@vger.kernel.org
186W: http://acpi.sourceforge.net/ 186W: http://acpi.sourceforge.net/
187T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git 187T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
188S: Maintained 188S: 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
42static char *acpi_table_signatures[ACPI_TABLE_COUNT] = { 42static char *acpi_table_signatures[ACPI_TABLE_COUNT] = {
43 [ACPI_TABLE_UNKNOWN] = "????", 43 [ACPI_TABLE_UNKNOWN] = "????",
@@ -74,7 +74,7 @@ struct acpi_table_sdt {
74static unsigned long sdt_pa; /* Physical Address */ 74static unsigned long sdt_pa; /* Physical Address */
75static unsigned long sdt_count; /* Table count */ 75static unsigned long sdt_count; /* Table count */
76 76
77static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES]; 77static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES] __initdata;
78 78
79void acpi_table_print(struct acpi_table_header *header, unsigned long phys_addr) 79void acpi_table_print(struct acpi_table_header *header, unsigned long phys_addr)
80{ 80{