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:42 -0400 |
commit | 03457cd455d042c9ee4cc47c1ed4532257980693 (patch) | |
tree | de926d3e839d363f3414c06906a56d601f224e78 /drivers/char/istallion.c | |
parent | 1ff9f542e5f87c299226557ce5e67a402ed4b502 (diff) |
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/istallion.c')
-rw-r--r-- | drivers/char/istallion.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/char/istallion.c b/drivers/char/istallion.c index 505d7a1f6b8c..44e5d60f517e 100644 --- a/drivers/char/istallion.c +++ b/drivers/char/istallion.c | |||
@@ -4600,9 +4600,8 @@ static int __init istallion_module_init(void) | |||
4600 | 4600 | ||
4601 | istallion_class = class_create(THIS_MODULE, "staliomem"); | 4601 | istallion_class = class_create(THIS_MODULE, "staliomem"); |
4602 | for (i = 0; i < 4; i++) | 4602 | for (i = 0; i < 4; i++) |
4603 | device_create_drvdata(istallion_class, NULL, | 4603 | device_create(istallion_class, NULL, MKDEV(STL_SIOMEMMAJOR, i), |
4604 | MKDEV(STL_SIOMEMMAJOR, i), | 4604 | NULL, "staliomem%d", i); |
4605 | NULL, "staliomem%d", i); | ||
4606 | 4605 | ||
4607 | return 0; | 4606 | return 0; |
4608 | err_deinit: | 4607 | err_deinit: |