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

Commit fef6ec8d authored by Jesper Juhl's avatar Jesper Juhl Committed by Greg Kroah-Hartman
Browse files

[PATCH] Driver core: small cleanup; remove check for NULL before kfree() in driver core



Remove needless checking of variable for NULL before calling kfree() on it.
Applies to 2.6.13-rc6-git9

Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ceaeade1
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -299,10 +299,8 @@ static void class_dev_release(struct kobject * kobj)

	pr_debug("device class '%s': release.\n", cd->class_id);

	if (cd->devt_attr) {
	kfree(cd->devt_attr);
	cd->devt_attr = NULL;
	}

	if (cls->release)
		cls->release(cd);