diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2009-09-22 19:47:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 10:39:57 -0400 |
commit | a9672c4b861afcf547bfe2cafeec4ca85a63da67 (patch) | |
tree | 3158b18ceaa532dee75a0a796b568e9fc5dc1014 /drivers/video/tmiofb.c | |
parent | f0c7d2b72ad1a694c0c886a14cc708841181e9bd (diff) |
drivers/video/tmiofb.c: fix uninitialised return value
drivers/video/tmiofb.c: In function 'tmiofb_resume':
drivers/video/tmiofb.c:977: warning: 'retval' may be used uninitialized in this function
Acked-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/tmiofb.c')
-rw-r--r-- | drivers/video/tmiofb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/tmiofb.c b/drivers/video/tmiofb.c index a1eb0862255b..6913fe168c25 100644 --- a/drivers/video/tmiofb.c +++ b/drivers/video/tmiofb.c | |||
@@ -974,7 +974,7 @@ static int tmiofb_resume(struct platform_device *dev) | |||
974 | { | 974 | { |
975 | struct fb_info *info = platform_get_drvdata(dev); | 975 | struct fb_info *info = platform_get_drvdata(dev); |
976 | struct mfd_cell *cell = dev->dev.platform_data; | 976 | struct mfd_cell *cell = dev->dev.platform_data; |
977 | int retval; | 977 | int retval = 0; |
978 | 978 | ||
979 | acquire_console_sem(); | 979 | acquire_console_sem(); |
980 | 980 | ||