diff options
Diffstat (limited to 'drivers/ide/ide-iops.c')
-rw-r--r-- | drivers/ide/ide-iops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index 27bb70ddd459..0fdf0dfb5743 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c | |||
@@ -40,7 +40,7 @@ u8 ide_read_error(ide_drive_t *drive) | |||
40 | struct ide_cmd cmd; | 40 | struct ide_cmd cmd; |
41 | 41 | ||
42 | memset(&cmd, 0, sizeof(cmd)); | 42 | memset(&cmd, 0, sizeof(cmd)); |
43 | cmd.tf_flags = IDE_TFLAG_IN_ERROR; | 43 | cmd.valid.in.tf = IDE_VALID_ERROR; |
44 | 44 | ||
45 | drive->hwif->tp_ops->tf_read(drive, &cmd); | 45 | drive->hwif->tp_ops->tf_read(drive, &cmd); |
46 | 46 | ||
@@ -348,7 +348,7 @@ int ide_config_drive_speed(ide_drive_t *drive, u8 speed) | |||
348 | tp_ops->write_devctl(hwif, ATA_NIEN | ATA_DEVCTL_OBS); | 348 | tp_ops->write_devctl(hwif, ATA_NIEN | ATA_DEVCTL_OBS); |
349 | 349 | ||
350 | memset(&cmd, 0, sizeof(cmd)); | 350 | memset(&cmd, 0, sizeof(cmd)); |
351 | cmd.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT; | 351 | cmd.valid.out.tf = IDE_VALID_FEATURE | IDE_VALID_NSECT; |
352 | cmd.tf.feature = SETFEATURES_XFER; | 352 | cmd.tf.feature = SETFEATURES_XFER; |
353 | cmd.tf.nsect = speed; | 353 | cmd.tf.nsect = speed; |
354 | 354 | ||