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

Commit 35acfdd7 authored by Yoichi Yuasa's avatar Yoichi Yuasa Committed by Greg Kroah-Hartman
Browse files

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: default avatarYoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 9de72ee5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -467,7 +467,7 @@ static void remove_bind_files(struct device_driver *drv)
	driver_remove_file(drv, &driver_attr_unbind);
}
#else
static inline void add_bind_files(struct device_driver *drv) {}
static inline int add_bind_files(struct device_driver *drv) { return 0; }
static inline void remove_bind_files(struct device_driver *drv) {}
#endif