Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 151269
b: refs/heads/master
c: fcb5207
h: refs/heads/master
i:
  151267: 500089d
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jun 16, 2009
1 parent 1182d1b commit 5fc4eb2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d961450da5e16dae8da276c0a234764872b2307b
refs/heads/master: fcb5207723919ad85178420633d55efea80b652d
6 changes: 4 additions & 2 deletions trunk/drivers/ide/ide-pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

int generic_ide_suspend(struct device *dev, pm_message_t mesg)
{
ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive);
ide_drive_t *drive = dev_get_drvdata(dev);
ide_drive_t *pair = ide_get_pair_dev(drive);
ide_hwif_t *hwif = drive->hwif;
struct request *rq;
struct request_pm_state rqpm;
Expand Down Expand Up @@ -34,7 +35,8 @@ int generic_ide_suspend(struct device *dev, pm_message_t mesg)

int generic_ide_resume(struct device *dev)
{
ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive);
ide_drive_t *drive = dev_get_drvdata(dev);
ide_drive_t *pair = ide_get_pair_dev(drive);
ide_hwif_t *hwif = drive->hwif;
struct request *rq;
struct request_pm_state rqpm;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/ide/ide-probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ static int ide_register_port(ide_hwif_t *hwif)

/* register with global device tree */
dev_set_name(&hwif->gendev, hwif->name);
hwif->gendev.driver_data = hwif;
dev_set_drvdata(&hwif->gendev, hwif);
if (hwif->gendev.parent == NULL)
hwif->gendev.parent = hwif->dev;
hwif->gendev.release = hwif_release_dev;
Expand Down Expand Up @@ -987,9 +987,9 @@ static void hwif_register_devices(ide_hwif_t *hwif)
int ret;

dev_set_name(dev, "%u.%u", hwif->index, i);
dev_set_drvdata(dev, drive);
dev->parent = &hwif->gendev;
dev->bus = &ide_bus_type;
dev->driver_data = drive;
dev->release = drive_release_dev;

ret = device_register(dev);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/ide/ide_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static int __devinit plat_ide_probe(struct platform_device *pdev)

static int __devexit plat_ide_remove(struct platform_device *pdev)
{
struct ide_host *host = pdev->dev.driver_data;
struct ide_host *host = dev_get_drvdata(&pdev->dev);

ide_host_remove(host);

Expand Down

0 comments on commit 5fc4eb2

Please sign in to comment.