mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
device create: scsi: 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: James E.J. Bottomley <James.Bottomley@HansenPartnership.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
05675de250
commit
9def0b9761
@ -271,8 +271,8 @@ rebuild_sys_tab:
|
||||
pHba->initialized = TRUE;
|
||||
pHba->state &= ~DPTI_STATE_RESET;
|
||||
if (adpt_sysfs_class) {
|
||||
struct device *dev = device_create(adpt_sysfs_class,
|
||||
NULL, MKDEV(DPTI_I2O_MAJOR, pHba->unit),
|
||||
struct device *dev = device_create_drvdata(adpt_sysfs_class,
|
||||
NULL, MKDEV(DPTI_I2O_MAJOR, pHba->unit), NULL,
|
||||
"dpti%d", pHba->unit);
|
||||
if (IS_ERR(dev)) {
|
||||
printk(KERN_WARNING"dpti%d: unable to "
|
||||
|
Loading…
Reference in New Issue
Block a user