Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 115122
b: refs/heads/master
c: 3ee074b
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Oct 16, 2008
1 parent 32fe74b commit 0ef245d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 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: 77997aaadd34510ed73153a4cd60161257a9e289
refs/heads/master: 3ee074bf432d24a92894397ac48ad2f2bb95efdc
4 changes: 2 additions & 2 deletions trunk/drivers/ide/ide-probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -657,8 +657,8 @@ static int ide_register_port(ide_hwif_t *hwif)
goto out;
}

hwif->portdev = device_create_drvdata(ide_port_class, &hwif->gendev,
MKDEV(0, 0), hwif, hwif->name);
hwif->portdev = device_create(ide_port_class, &hwif->gendev,
MKDEV(0, 0), hwif, hwif->name);
if (IS_ERR(hwif->portdev)) {
ret = PTR_ERR(hwif->portdev);
device_unregister(&hwif->gendev);
Expand Down
11 changes: 5 additions & 6 deletions trunk/drivers/ide/ide-tape.c
Original file line number Diff line number Diff line change
Expand Up @@ -2420,12 +2420,11 @@ static int ide_tape_probe(ide_drive_t *drive)

idetape_setup(drive, tape, minor);

device_create_drvdata(idetape_sysfs_class, &drive->gendev,
MKDEV(IDETAPE_MAJOR, minor), NULL,
"%s", tape->name);
device_create_drvdata(idetape_sysfs_class, &drive->gendev,
MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
"n%s", tape->name);
device_create(idetape_sysfs_class, &drive->gendev,
MKDEV(IDETAPE_MAJOR, minor), NULL, "%s", tape->name);
device_create(idetape_sysfs_class, &drive->gendev,
MKDEV(IDETAPE_MAJOR, minor + 128), NULL,
"n%s", tape->name);

g->fops = &idetape_block_ops;
ide_register_region(g);
Expand Down

0 comments on commit 0ef245d

Please sign in to comment.