diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-07-21 23:03:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-16 12:24:44 -0400 |
commit | ea9e42f627a45f979b4977009724eb114406e3c7 (patch) | |
tree | a44ace4e1485a165d6d354596a8ddfc5a70f86d3 /drivers/s390/char/vmur.c | |
parent | 6e05d6c4676408b46b01eef29fd472b89ba1f98a (diff) |
device create: s390: convert device_create_drvdata to device_create
Now that device_create() has been audited, rename things back to the
original call to be sane.
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/s390/char/vmur.c')
-rw-r--r-- | drivers/s390/char/vmur.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/s390/char/vmur.c b/drivers/s390/char/vmur.c index 6fdfa5ddeca8..9020eba620ee 100644 --- a/drivers/s390/char/vmur.c +++ b/drivers/s390/char/vmur.c | |||
@@ -896,9 +896,8 @@ static int ur_set_online(struct ccw_device *cdev) | |||
896 | goto fail_free_cdev; | 896 | goto fail_free_cdev; |
897 | } | 897 | } |
898 | 898 | ||
899 | urd->device = device_create_drvdata(vmur_class, NULL, | 899 | urd->device = device_create(vmur_class, NULL, urd->char_device->dev, |
900 | urd->char_device->dev, NULL, | 900 | NULL, "%s", node_id); |
901 | "%s", node_id); | ||
902 | if (IS_ERR(urd->device)) { | 901 | if (IS_ERR(urd->device)) { |
903 | rc = PTR_ERR(urd->device); | 902 | rc = PTR_ERR(urd->device); |
904 | TRACE("ur_set_online: device_create rc=%d\n", rc); | 903 | TRACE("ur_set_online: device_create rc=%d\n", rc); |