提交 66234156 编写于 作者: P Patrick Mochel 提交者: Greg Kroah-Hartman

[PATCH] sn: fixes due to driver core changes

Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 273971ba
...@@ -518,25 +518,22 @@ static int __init tiocx_init(void) ...@@ -518,25 +518,22 @@ static int __init tiocx_init(void)
return 0; return 0;
} }
static void __exit tiocx_exit(void) static int cx_remove_device(struct device * dev, void * data)
{ {
struct device *dev; struct cx_dev *cx_dev = to_cx_dev(dev);
struct device *tdev; device_remove_file(dev, &dev_attr_cxdev_control);
cx_device_unregister(cx_dev);
return 0;
}
static void __exit tiocx_exit(void)
{
DBG("tiocx_exit\n"); DBG("tiocx_exit\n");
/* /*
* Unregister devices. * Unregister devices.
*/ */
list_for_each_entry_safe(dev, tdev, &tiocx_bus_type.devices.list, bus_for_each_dev(&tiocx_bus_type, NULL, NULL, cx_remove_device);
bus_list) {
if (dev) {
struct cx_dev *cx_dev = to_cx_dev(dev);
device_remove_file(dev, &dev_attr_cxdev_control);
cx_device_unregister(cx_dev);
}
}
bus_unregister(&tiocx_bus_type); bus_unregister(&tiocx_bus_type);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册