aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-02-02 13:56:43 -0500
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-02-02 13:56:43 -0500
commit070ecb841c4f15817f4e2365785173eea56ab3e6 (patch)
tree715cd73d2ee4498cab6cd3dd97b57d8d7878c29f /drivers
parent4484d80388b4a70250f590c5a3631c91f088fe18 (diff)
ide-acpi: remove dead code from do_drive_get_GTF()
These pointers are always setup in ide_acpi_init(). Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ide/ide-acpi.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/ide/ide-acpi.c b/drivers/ide/ide-acpi.c
index 6dfe1036e6fa..ac12d30f2105 100644
--- a/drivers/ide/ide-acpi.c
+++ b/drivers/ide/ide-acpi.c
@@ -280,16 +280,6 @@ static int do_drive_get_GTF(ide_drive_t *drive,
280 280
281 port = hwif->channel ? drive->dn - 2: drive->dn; 281 port = hwif->channel ? drive->dn - 2: drive->dn;
282 282
283 if (!drive->acpidata) {
284 if (port == 0) {
285 drive->acpidata = &hwif->acpidata->master;
286 hwif->acpidata->master.drive = drive;
287 } else {
288 drive->acpidata = &hwif->acpidata->slave;
289 hwif->acpidata->slave.drive = drive;
290 }
291 }
292
293 DEBPRINT("ENTER: %s at %s, port#: %d, hard_port#: %d\n", 283 DEBPRINT("ENTER: %s at %s, port#: %d, hard_port#: %d\n",
294 hwif->name, dev->bus_id, port, hwif->channel); 284 hwif->name, dev->bus_id, port, hwif->channel);
295 285