diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-08-10 22:51:09 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 23:51:06 +0200 |
commit | b4d1eb2ccecb76bce4c2125c5a3e77753fcfaeb0 (patch) | |
tree | 305103e5b12edfca76015222620dcd70fbcb757e /drivers/base/power/resume.c | |
parent | Fix Firmware class name collision (diff) | |
download | linux-b4d1eb2ccecb76bce4c2125c5a3e77753fcfaeb0.tar.xz linux-b4d1eb2ccecb76bce4c2125c5a3e77753fcfaeb0.zip |
drivers/base/power/: make 2 functions static
suspend_device() and resume_device() can now become static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/power/resume.c')
-rw-r--r-- | drivers/base/power/resume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/power/resume.c b/drivers/base/power/resume.c index 00fd84ae6e66..67948bac9938 100644 --- a/drivers/base/power/resume.c +++ b/drivers/base/power/resume.c @@ -20,7 +20,7 @@ * */ -int resume_device(struct device * dev) +static int resume_device(struct device * dev) { int error = 0; |