diff options
author | Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2006-07-14 12:30:11 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-26 00:08:39 -0400 |
commit | 35acfdd7253025e8441883fd8f879f5240844f95 (patch) | |
tree | d1fb2d170964572c4b5446f73a44db88599c0e46 /drivers/base/bus.c | |
parent | 9de72ee59029087fc8300633113c75a5fe73a7b8 (diff) |
Driver core: fixed add_bind_files() definition
When CONFIG_HOTPLUG is n, add_bind_files() definition is wrong.
This patch has fixed it.
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/bus.c')
-rw-r--r-- | drivers/base/bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c index 2e954d07175a..4d22a1d10a1c 100644 --- a/drivers/base/bus.c +++ b/drivers/base/bus.c | |||
@@ -467,7 +467,7 @@ static void remove_bind_files(struct device_driver *drv) | |||
467 | driver_remove_file(drv, &driver_attr_unbind); | 467 | driver_remove_file(drv, &driver_attr_unbind); |
468 | } | 468 | } |
469 | #else | 469 | #else |
470 | static inline void add_bind_files(struct device_driver *drv) {} | 470 | static inline int add_bind_files(struct device_driver *drv) { return 0; } |
471 | static inline void remove_bind_files(struct device_driver *drv) {} | 471 | static inline void remove_bind_files(struct device_driver *drv) {} |
472 | #endif | 472 | #endif |
473 | 473 | ||