Messages in this thread Patch in this message |  | | Date | Thu, 5 Jun 2003 11:26:41 -0700 | From | Stephen Hemminger <> | Subject | [PATCH] typo in new class_device_release |
| |
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/
|  |