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

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

device create: dvb: 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.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 275e64de
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -233,9 +233,9 @@ int dvb_register_device(struct dvb_adapter *adap, struct dvb_device **pdvbdev,

	mutex_unlock(&dvbdev_register_lock);

	clsdev = device_create(dvb_class, adap->device,
	clsdev = device_create_drvdata(dvb_class, adap->device,
			       MKDEV(DVB_MAJOR, nums2minor(adap->num, type, id)),
			       "dvb%d.%s%d", adap->num, dnames[type], id);
			       NULL, "dvb%d.%s%d", adap->num, dnames[type], id);
	if (IS_ERR(clsdev)) {
		printk(KERN_ERR "%s: failed to create device dvb%d.%s%d (%ld)\n",
		       __func__, adap->num, dnames[type], id, PTR_ERR(clsdev));