aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/device.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-08-15 01:43:20 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2006-09-26 00:08:39 -0400
commitf86db396ff455ed586751d21816a1ebd431264e5 (patch)
treedfbeb27206b673ed46482b18ee6d779786be7ed1 /include/linux/device.h
parent370226449ced358e52d198081120826ef52c166b (diff)
drivers/base: check errors
Add lots of return-value checking. <pcornelia.huck@de.ibm.com>: fix bus_rescan_devices()] Cc: "Randy.Dunlap" <rdunlap@xenotime.net> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/device.h')
-rw-r--r--include/linux/device.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index ad4db72f5733..b3da9a870cfc 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -62,7 +62,7 @@ struct bus_type {
62extern int __must_check bus_register(struct bus_type * bus); 62extern int __must_check bus_register(struct bus_type * bus);
63extern void bus_unregister(struct bus_type * bus); 63extern void bus_unregister(struct bus_type * bus);
64 64
65extern void bus_rescan_devices(struct bus_type * bus); 65extern int __must_check bus_rescan_devices(struct bus_type * bus);
66 66
67/* iterator helpers for buses */ 67/* iterator helpers for buses */
68 68
@@ -397,11 +397,11 @@ extern int device_rename(struct device *dev, char *new_name);
397 * Manual binding of a device to driver. See drivers/base/bus.c 397 * Manual binding of a device to driver. See drivers/base/bus.c
398 * for information on use. 398 * for information on use.
399 */ 399 */
400extern void device_bind_driver(struct device * dev); 400extern int __must_check device_bind_driver(struct device *dev);
401extern void device_release_driver(struct device * dev); 401extern void device_release_driver(struct device * dev);
402extern int __must_check device_attach(struct device * dev); 402extern int __must_check device_attach(struct device * dev);
403extern void driver_attach(struct device_driver * drv); 403extern int __must_check driver_attach(struct device_driver *drv);
404extern void device_reprobe(struct device *dev); 404extern int __must_check device_reprobe(struct device *dev);
405 405
406/* 406/*
407 * Easy functions for dynamically creating devices on the fly 407 * Easy functions for dynamically creating devices on the fly