mirror of https://gitee.com/openkylin/linux.git
IB/hfi1: Remove anti-pattern in cdev init
Remove the usage of an anti-pattern goto in hfi1_cdev_init to improve code readability. Suggested-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> Reviewed-by: Ira Weiny <ira.weiny@intel.com> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
b583faf4dc
commit
f3225c3f11
|
@ -82,13 +82,13 @@ int hfi1_cdev_init(int minor, const char *name,
|
||||||
else
|
else
|
||||||
device = device_create(class, NULL, dev, NULL, "%s", name);
|
device = device_create(class, NULL, dev, NULL, "%s", name);
|
||||||
|
|
||||||
if (!IS_ERR(device))
|
if (IS_ERR(device)) {
|
||||||
goto done;
|
|
||||||
ret = PTR_ERR(device);
|
ret = PTR_ERR(device);
|
||||||
device = NULL;
|
device = NULL;
|
||||||
pr_err("Could not create device for minor %d, %s (err %d)\n",
|
pr_err("Could not create device for minor %d, %s (err %d)\n",
|
||||||
minor, name, -ret);
|
minor, name, -ret);
|
||||||
cdev_del(cdev);
|
cdev_del(cdev);
|
||||||
|
}
|
||||||
done:
|
done:
|
||||||
*devp = device;
|
*devp = device;
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue