提交 30c96ce5 编写于 作者: J Jani Nikula 提交者: Jiri Kosina

powerpc/BSR: fix device_create() return value check

Use IS_ERR() instead of comparing to NULL.
Signed-off-by: NJani Nikula <ext-jani.1.nikula@nokia.com>
Acked-by: NSonny Rao <sonnyrao@us.ibm.com>
Signed-off-by: NJiri Kosina <jkosina@suse.cz>
上级 3e21ec22
......@@ -252,7 +252,7 @@ static int bsr_add_node(struct device_node *bn)
cur->bsr_device = device_create(bsr_class, NULL, cur->bsr_dev,
cur, cur->bsr_name);
if (!cur->bsr_device) {
if (IS_ERR(cur->bsr_device)) {
printk(KERN_ERR "device_create failed for %s\n",
cur->bsr_name);
cdev_del(&cur->bsr_cdev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册