aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2005-06-22 16:09:05 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2005-06-29 22:48:04 -0700
commit23d3d602cb96addd3c1158424fb01a49ea5e81b1 (patch)
tree2daa85579c964bfe3d1a91fe365d202b8f38422b /include
parent[PATCH] driver core: Add the ability to bind drivers to devices from userspace (diff)
downloadlinux-dev-23d3d602cb96addd3c1158424fb01a49ea5e81b1.tar.xz
linux-dev-23d3d602cb96addd3c1158424fb01a49ea5e81b1.zip
[PATCH] driver core: change bus_rescan_devices to return void
No one was looking at the return value of bus_rescan_devices, and it really wasn't anything that anyone in the kernel would ever care about. So change it which enabled some counting code to be removed also. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 07222c531d37..f378c846e6d5 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -69,7 +69,7 @@ struct bus_type {
extern int bus_register(struct bus_type * bus);
extern void bus_unregister(struct bus_type * bus);
-extern int bus_rescan_devices(struct bus_type * bus);
+extern void bus_rescan_devices(struct bus_type * bus);
extern struct bus_type * get_bus(struct bus_type * bus);
extern void put_bus(struct bus_type * bus);