summaryrefslogtreecommitdiffstats
path: root/drivers/char/stallion.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman2008-07-22 05:03:34 +0200
committerGreg Kroah-Hartman2008-10-16 18:24:42 +0200
commit03457cd455d042c9ee4cc47c1ed4532257980693 (patch)
treede926d3e839d363f3414c06906a56d601f224e78 /drivers/char/stallion.c
parentdevice create: block: convert device_create_drvdata to device_create (diff)
downloadkernel-qcow2-linux-03457cd455d042c9ee4cc47c1ed4532257980693.tar.gz
kernel-qcow2-linux-03457cd455d042c9ee4cc47c1ed4532257980693.tar.xz
kernel-qcow2-linux-03457cd455d042c9ee4cc47c1ed4532257980693.zip
device create: char: convert device_create_drvdata to device_create
Now that device_create() has been audited, rename things back to the original call to be sane. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char/stallion.c')
-rw-r--r--drivers/char/stallion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/stallion.c b/drivers/char/stallion.c
index 8b8f07a7f505..963b03fb29e5 100644
--- a/drivers/char/stallion.c
+++ b/drivers/char/stallion.c
@@ -4743,8 +4743,8 @@ static int __init stallion_module_init(void)
if (IS_ERR(stallion_class))
printk("STALLION: failed to create class\n");
for (i = 0; i < 4; i++)
- device_create_drvdata(stallion_class, NULL, MKDEV(STL_SIOMEMMAJOR, i),
- NULL, "staliomem%d", i);
+ device_create(stallion_class, NULL, MKDEV(STL_SIOMEMMAJOR, i),
+ NULL, "staliomem%d", i);
return 0;
err_unrtty: