Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c76d3d28 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

device create: infiniband: convert device_create to device_create_drvdata



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: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f71674a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);