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

Commit 22ea71d7 authored by Dan Carpenter's avatar Dan Carpenter Committed by Linus Torvalds
Browse files

c2port: class_create() returns an ERR_PTR



class_create() doesn't return a NULL, it only returns ERR_PTRs.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7ad12566
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -984,9 +984,9 @@ static int __init c2port_init(void)
		" - (C) 2007 Rodolfo Giometti\n");

	c2port_class = class_create(THIS_MODULE, "c2port");
	if (!c2port_class) {
	if (IS_ERR(c2port_class)) {
		printk(KERN_ERR "c2port: failed to allocate class\n");
		return -ENOMEM;
		return PTR_ERR(c2port_class);
	}
	c2port_class->dev_attrs = c2port_attrs;