[PATCH] typo in new class_device_release

From: Stephen Hemminger (shemminger@osdl.org)
Date: Thu Jun 05 2003 - 13:26:41 EST


There is a typo in the current 2.5.70 bk version of class_device_release that
was not there in my original patch. By confusing the class and the class_device,
the release function oops. cd->release is always the function itself (class_device_release),
cls->release is the one setup for the class (net_class in my case).

diff -Nru a/drivers/base/class.c b/drivers/base/class.c
--- a/drivers/base/class.c Thu Jun 5 11:21:42 2003
+++ b/drivers/base/class.c Thu Jun 5 11:21:42 2003
@@ -191,7 +191,7 @@
         pr_debug("device class '%s': release.\n",cd->class_id);
 
         if (cls->release)
- cd->release(cd);
+ cls->release(cd);
 }
 
 static struct kobj_type ktype_class_device = {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sat Jun 07 2003 - 22:00:28 EST