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/ip2 | |
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/ip2')
-rw-r--r-- | drivers/char/ip2/ip2main.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/char/ip2/ip2main.c b/drivers/char/ip2/ip2main.c index 6774572d3759..70e0ebc30bd0 100644 --- a/drivers/char/ip2/ip2main.c +++ b/drivers/char/ip2/ip2main.c | |||
@@ -745,12 +745,12 @@ static int __init ip2_loadmain(void) | |||
745 | 745 | ||
746 | pB = i2BoardPtrTable[i]; | 746 | pB = i2BoardPtrTable[i]; |
747 | if (pB != NULL) { | 747 | if (pB != NULL) { |
748 | device_create_drvdata(ip2_class, NULL, | 748 | device_create(ip2_class, NULL, |
749 | MKDEV(IP2_IPL_MAJOR, 4 * i), | 749 | MKDEV(IP2_IPL_MAJOR, 4 * i), |
750 | NULL, "ipl%d", i); | 750 | NULL, "ipl%d", i); |
751 | device_create_drvdata(ip2_class, NULL, | 751 | device_create(ip2_class, NULL, |
752 | MKDEV(IP2_IPL_MAJOR, 4 * i + 1), | 752 | MKDEV(IP2_IPL_MAJOR, 4 * i + 1), |
753 | NULL, "stat%d", i); | 753 | NULL, "stat%d", i); |
754 | 754 | ||
755 | for (box = 0; box < ABS_MAX_BOXES; box++) | 755 | for (box = 0; box < ABS_MAX_BOXES; box++) |
756 | for (j = 0; j < ABS_BIGGEST_BOX; j++) | 756 | for (j = 0; j < ABS_BIGGEST_BOX; j++) |