aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/kernel-parameters.txt2
-rw-r--r--drivers/acpi/tables.c2
-rw-r--r--drivers/ata/libata-core.c2
-rw-r--r--include/asm-um/common.lds.S2
4 files changed, 5 insertions, 3 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index ef2ffded1392..12533a958c51 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -142,7 +142,7 @@ and is between 256 and 4096 characters. It is defined in the file
142 Format: <int> 142 Format: <int>
143 2: use 2nd APIC table, if available 143 2: use 2nd APIC table, if available
144 1,0: use 1st APIC table 144 1,0: use 1st APIC table
145 default: 2 145 default: 0
146 146
147 acpi_sleep= [HW,ACPI] Sleep options 147 acpi_sleep= [HW,ACPI] Sleep options
148 Format: { s3_bios, s3_mode } 148 Format: { s3_bios, s3_mode }
diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c
index 96792a6cc164..c3419182c9a7 100644
--- a/drivers/acpi/tables.c
+++ b/drivers/acpi/tables.c
@@ -42,7 +42,7 @@ static char *mps_inti_flags_trigger[] = { "dfl", "edge", "res", "level" };
42 42
43static struct acpi_table_desc initial_tables[ACPI_MAX_TABLES] __initdata; 43static struct acpi_table_desc initial_tables[ACPI_MAX_TABLES] __initdata;
44 44
45static int acpi_apic_instance __initdata = 2; 45static int acpi_apic_instance __initdata;
46 46
47void acpi_table_print_madt_entry(struct acpi_subtable_header *header) 47void acpi_table_print_madt_entry(struct acpi_subtable_header *header)
48{ 48{
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index f1f595f53d95..ddb3909d7288 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -3361,6 +3361,8 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = {
3361 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ }, 3361 { "FUJITSU MHT2060BH", NULL, ATA_HORKAGE_NONCQ },
3362 /* NCQ is broken */ 3362 /* NCQ is broken */
3363 { "Maxtor 6L250S0", "BANC1G10", ATA_HORKAGE_NONCQ }, 3363 { "Maxtor 6L250S0", "BANC1G10", ATA_HORKAGE_NONCQ },
3364 /* NCQ hard hangs device under heavier load, needs hard power cycle */
3365 { "Maxtor 6B250S0", "BANC1B70", ATA_HORKAGE_NONCQ },
3364 3366
3365 /* Devices with NCQ limits */ 3367 /* Devices with NCQ limits */
3366 3368
diff --git a/include/asm-um/common.lds.S b/include/asm-um/common.lds.S
index b16222b42821..f5de80c31e88 100644
--- a/include/asm-um/common.lds.S
+++ b/include/asm-um/common.lds.S
@@ -15,7 +15,7 @@
15 PROVIDE (_unprotected_end = .); 15 PROVIDE (_unprotected_end = .);
16 16
17 . = ALIGN(4096); 17 . = ALIGN(4096);
18 .note : { *(note.*) } 18 .note : { *(.note.*) }
19 __start___ex_table = .; 19 __start___ex_table = .;
20 __ex_table : { *(__ex_table) } 20 __ex_table : { *(__ex_table) }
21 __stop___ex_table = .; 21 __stop___ex_table = .;