diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:42 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:42 -0400 |
commit | e6d95bd14928926d6658b5e4ace905e8b83ed27a (patch) | |
tree | bc6c6b238505ff94e7523e1a9c2a445d9ddf7e6b /drivers/ide/legacy/ide-4drives.c | |
parent | a698400a1556cf9f0376d1a41e536973dd5c4747 (diff) |
ide: ->port_init_devs -> ->init_dev
Change ->port_init_devs method to take 'ide_drive_t *' as an argument
instead of 'ide_hwif_t *' and rename it to ->init_dev.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/legacy/ide-4drives.c')
-rw-r--r-- | drivers/ide/legacy/ide-4drives.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/ide/legacy/ide-4drives.c b/drivers/ide/legacy/ide-4drives.c index 5cd6ce537eea..89c8ff0a4d08 100644 --- a/drivers/ide/legacy/ide-4drives.c +++ b/drivers/ide/legacy/ide-4drives.c | |||
@@ -11,16 +11,14 @@ static int probe_4drives; | |||
11 | module_param_named(probe, probe_4drives, bool, 0); | 11 | module_param_named(probe, probe_4drives, bool, 0); |
12 | MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port"); | 12 | MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port"); |
13 | 13 | ||
14 | static void ide_4drives_port_init_devs(ide_hwif_t *hwif) | 14 | static void ide_4drives_init_dev(ide_drive_t *drive) |
15 | { | 15 | { |
16 | if (hwif->channel) { | 16 | if (drive->hwif->channel) |
17 | hwif->drives[0].select.all ^= 0x20; | 17 | drive->select.all ^= 0x20; |
18 | hwif->drives[1].select.all ^= 0x20; | ||
19 | } | ||
20 | } | 18 | } |
21 | 19 | ||
22 | static const struct ide_port_ops ide_4drives_port_ops = { | 20 | static const struct ide_port_ops ide_4drives_port_ops = { |
23 | .port_init_devs = ide_4drives_port_init_devs, | 21 | .init_dev = ide_4drives_init_dev, |
24 | }; | 22 | }; |
25 | 23 | ||
26 | static const struct ide_port_info ide_4drives_port_info = { | 24 | static const struct ide_port_info ide_4drives_port_info = { |