diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-03-28 01:57:37 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-03-28 01:57:37 -0400 |
commit | d7d0dad62a641c156386288a747c1a2f6bb2e42d (patch) | |
tree | b95bd786ae78c199892791bff1d2c583475e2239 /drivers/ata | |
parent | 28defbea64622f69d65a6079bf800cedb9915a5f (diff) |
[libata] Disable ACPI by default; fix namespace problems
Not yet ready to turn on ATA ACPI by default, for either PATA or SATA.
Also, rename the global-scope module parameter variable 'noacpi' to
something more libata-specific, reducing the potential for namespace
collision.
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-acpi.c | 8 | ||||
-rw-r--r-- | drivers/ata/libata-core.c | 4 | ||||
-rw-r--r-- | drivers/ata/libata.h | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/drivers/ata/libata-acpi.c b/drivers/ata/libata-acpi.c index c428a56e6f31..03a0acff6cfa 100644 --- a/drivers/ata/libata-acpi.c +++ b/drivers/ata/libata-acpi.c | |||
@@ -305,7 +305,7 @@ static int do_drive_get_GTF(struct ata_port *ap, int ix, | |||
305 | *gtf_address = 0UL; | 305 | *gtf_address = 0UL; |
306 | *obj_loc = 0UL; | 306 | *obj_loc = 0UL; |
307 | 307 | ||
308 | if (noacpi) | 308 | if (libata_noacpi) |
309 | return 0; | 309 | return 0; |
310 | 310 | ||
311 | if (ata_msg_probe(ap)) | 311 | if (ata_msg_probe(ap)) |
@@ -531,7 +531,7 @@ static int do_drive_set_taskfiles(struct ata_port *ap, | |||
531 | ata_dev_printk(atadev, KERN_DEBUG, "%s: ENTER: port#: %d\n", | 531 | ata_dev_printk(atadev, KERN_DEBUG, "%s: ENTER: port#: %d\n", |
532 | __FUNCTION__, ap->port_no); | 532 | __FUNCTION__, ap->port_no); |
533 | 533 | ||
534 | if (noacpi || !(ap->cbl == ATA_CBL_SATA)) | 534 | if (libata_noacpi || !(ap->cbl == ATA_CBL_SATA)) |
535 | return 0; | 535 | return 0; |
536 | 536 | ||
537 | if (!ata_dev_enabled(atadev) || (ap->flags & ATA_FLAG_DISABLED)) | 537 | if (!ata_dev_enabled(atadev) || (ap->flags & ATA_FLAG_DISABLED)) |
@@ -574,7 +574,7 @@ int ata_acpi_exec_tfs(struct ata_port *ap) | |||
574 | unsigned long gtf_address; | 574 | unsigned long gtf_address; |
575 | unsigned long obj_loc; | 575 | unsigned long obj_loc; |
576 | 576 | ||
577 | if (noacpi) | 577 | if (libata_noacpi) |
578 | return 0; | 578 | return 0; |
579 | /* | 579 | /* |
580 | * TBD - implement PATA support. For now, | 580 | * TBD - implement PATA support. For now, |
@@ -636,7 +636,7 @@ int ata_acpi_push_id(struct ata_port *ap, unsigned int ix) | |||
636 | struct acpi_object_list input; | 636 | struct acpi_object_list input; |
637 | union acpi_object in_params[1]; | 637 | union acpi_object in_params[1]; |
638 | 638 | ||
639 | if (noacpi) | 639 | if (libata_noacpi) |
640 | return 0; | 640 | return 0; |
641 | 641 | ||
642 | if (ata_msg_probe(ap)) | 642 | if (ata_msg_probe(ap)) |
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index bf327d473ce9..48ee399d3a44 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -93,8 +93,8 @@ static int ata_probe_timeout = ATA_TMOUT_INTERNAL / HZ; | |||
93 | module_param(ata_probe_timeout, int, 0444); | 93 | module_param(ata_probe_timeout, int, 0444); |
94 | MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)"); | 94 | MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)"); |
95 | 95 | ||
96 | int noacpi; | 96 | int libata_noacpi = 1; |
97 | module_param(noacpi, int, 0444); | 97 | module_param_named(noacpi, libata_noacpi, int, 0444); |
98 | MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set"); | 98 | MODULE_PARM_DESC(noacpi, "Disables the use of ACPI in suspend/resume when set"); |
99 | 99 | ||
100 | MODULE_AUTHOR("Jeff Garzik"); | 100 | MODULE_AUTHOR("Jeff Garzik"); |
diff --git a/drivers/ata/libata.h b/drivers/ata/libata.h index c42671493e8c..1f1e3a51f859 100644 --- a/drivers/ata/libata.h +++ b/drivers/ata/libata.h | |||
@@ -56,7 +56,7 @@ extern struct workqueue_struct *ata_aux_wq; | |||
56 | extern int atapi_enabled; | 56 | extern int atapi_enabled; |
57 | extern int atapi_dmadir; | 57 | extern int atapi_dmadir; |
58 | extern int libata_fua; | 58 | extern int libata_fua; |
59 | extern int noacpi; | 59 | extern int libata_noacpi; |
60 | extern struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev); | 60 | extern struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev); |
61 | extern int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev, | 61 | extern int ata_build_rw_tf(struct ata_taskfile *tf, struct ata_device *dev, |
62 | u64 block, u32 n_block, unsigned int tf_flags, | 62 | u64 block, u32 n_block, unsigned int tf_flags, |