diff options
author | Len Brown <len.brown@intel.com> | 2005-12-30 02:44:59 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-12-30 02:44:59 -0500 |
commit | 04348e69e7e78ad69a09b2e1157f628d6c764370 (patch) | |
tree | 9bf252f44d17fbeda620a39595659177172f3d77 /drivers/acpi | |
parent | c1a959d8ef4e343f11c8c0f9a693815b6dc76886 (diff) |
[ACPI] reduce kernel size: move 5BK .bss to 2.5KB .init.data
put __initdata on sdt_entry[], as it is accessed only by __init functions.
http://bugzilla.kernel.org/show_bug.cgi?id=1311
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/tables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index a2bf25b05e1..31d4f3ffc26 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c @@ -37,7 +37,7 @@ #define PREFIX "ACPI: " -#define ACPI_MAX_TABLES 256 +#define ACPI_MAX_TABLES 128 static char *acpi_table_signatures[ACPI_TABLE_COUNT] = { [ACPI_TABLE_UNKNOWN] = "????", @@ -74,7 +74,7 @@ struct acpi_table_sdt { static unsigned long sdt_pa; /* Physical Address */ static unsigned long sdt_count; /* Table count */ -static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES]; +static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES] __initdata; void acpi_table_print(struct acpi_table_header *header, unsigned long phys_addr) { |