diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:37 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:37 -0400 |
commit | 22aa4b32a19b1f231d4ce7e9af6354b577a22a35 (patch) | |
tree | 3e773e7102e4ea6bb6b4c00edce442c4e8f37edb /drivers/ide/ide-proc.c | |
parent | e6830a86c260d73c6f370aa7ed17ee6c71e5ee05 (diff) |
ide: remove ide_task_t typedef
While at it:
- rename struct ide_task_s to struct ide_cmd
- remove stale comments from idedisk_{read_native,set}_max_address()
- drop unused 'cmd' argument from ide_{cmd,task}_ioctl()
- drop unused 'task' argument from tx4939ide_tf_load_fixup()
- rename ide_complete_task() to ide_complete_cmd()
- use consistent naming for struct ide_cmd variables
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-proc.c')
-rw-r--r-- | drivers/ide/ide-proc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/ide/ide-proc.c b/drivers/ide/ide-proc.c index 417cde56eafd..10a88bf3eefa 100644 --- a/drivers/ide/ide-proc.c +++ b/drivers/ide/ide-proc.c | |||
@@ -194,20 +194,20 @@ ide_devset_get(xfer_rate, current_speed); | |||
194 | 194 | ||
195 | static int set_xfer_rate (ide_drive_t *drive, int arg) | 195 | static int set_xfer_rate (ide_drive_t *drive, int arg) |
196 | { | 196 | { |
197 | ide_task_t task; | 197 | struct ide_cmd cmd; |
198 | int err; | 198 | int err; |
199 | 199 | ||
200 | if (arg < XFER_PIO_0 || arg > XFER_UDMA_6) | 200 | if (arg < XFER_PIO_0 || arg > XFER_UDMA_6) |
201 | return -EINVAL; | 201 | return -EINVAL; |
202 | 202 | ||
203 | memset(&task, 0, sizeof(task)); | 203 | memset(&cmd, 0, sizeof(cmd)); |
204 | task.tf.command = ATA_CMD_SET_FEATURES; | 204 | cmd.tf.command = ATA_CMD_SET_FEATURES; |
205 | task.tf.feature = SETFEATURES_XFER; | 205 | cmd.tf.feature = SETFEATURES_XFER; |
206 | task.tf.nsect = (u8)arg; | 206 | cmd.tf.nsect = (u8)arg; |
207 | task.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT | | 207 | cmd.tf_flags = IDE_TFLAG_OUT_FEATURE | IDE_TFLAG_OUT_NSECT | |
208 | IDE_TFLAG_IN_NSECT; | 208 | IDE_TFLAG_IN_NSECT; |
209 | 209 | ||
210 | err = ide_no_data_taskfile(drive, &task); | 210 | err = ide_no_data_taskfile(drive, &cmd); |
211 | 211 | ||
212 | if (!err) { | 212 | if (!err) { |
213 | ide_set_xfer_rate(drive, (u8) arg); | 213 | ide_set_xfer_rate(drive, (u8) arg); |