diff options
author | Adrian Bunk | 2007-06-18 01:42:54 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2007-07-12 01:09:02 +0200 |
commit | 2a0134554e12f530c6eccb1dab3f0f8954f855c9 (patch) | |
tree | 96c94e51d3d26d8f8c9fbaf52d6fe1103cc1323d /drivers/base/base.h | |
parent | driver core: fix kernel doc of device_release_driver (diff) | |
download | kernel-qcow2-linux-2a0134554e12f530c6eccb1dab3f0f8954f855c9.tar.gz kernel-qcow2-linux-2a0134554e12f530c6eccb1dab3f0f8954f855c9.tar.xz kernel-qcow2-linux-2a0134554e12f530c6eccb1dab3f0f8954f855c9.zip |
Driver core: fix devres_release_all() return value
Every file should include the headers containing the prototypes for
it's global functions.
Since the GNU C compiler is now able to detect that the function
prototype of devres_release_all() in the header and the actual function
disagree regarding the return value, this patch also fixes this bug.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/base.h')
-rw-r--r-- | drivers/base/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/base.h b/drivers/base/base.h index 5512d84452f2..47eb02d9f1af 100644 --- a/drivers/base/base.h +++ b/drivers/base/base.h @@ -44,6 +44,6 @@ struct class_device_attribute *to_class_dev_attr(struct attribute *_attr) extern char *make_class_name(const char *name, struct kobject *kobj); -extern void devres_release_all(struct device *dev); +extern int devres_release_all(struct device *dev); extern struct kset devices_subsys; |