Skip to content

Commit

Permalink
device create: infiniband: convert device_create to device_create_drv…
Browse files Browse the repository at this point in the history
…data

device_create() is race-prone, so use the race-free
device_create_drvdata() instead as device_create() is going away.

Cc: Roland Dreier <rolandd@cisco.com>
Cc: Sean Hefty <sean.hefty@intel.com>
Cc: Hal Rosenstock <hal.rosenstock@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Jul 22, 2008
1 parent f71674a commit c76d3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/infiniband/hw/ipath/ipath_file_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -2455,7 +2455,7 @@ static int init_cdev(int minor, char *name, const struct file_operations *fops,
goto err_cdev;
}

device = device_create(ipath_class, NULL, dev, name);
device = device_create_drvdata(ipath_class, NULL, dev, NULL, name);

if (IS_ERR(device)) {
ret = PTR_ERR(device);
Expand Down

0 comments on commit c76d3d2

Please sign in to comment.