diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2009-06-16 18:34:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-16 22:48:00 -0400 |
commit | 491bcc9bf5d9a57f2d9cb3ce8ba0f6d48752c113 (patch) | |
tree | c0ef0205d06fd5c09dff1ee8dcec40e2ad28c9df /drivers/video/offb.c | |
parent | f73323de5a07e2a7bf3e9bca36dcc8057e5446d4 (diff) |
fbdev: use framebuffer_release() for freeing fb_info structures
Use the framebuffer_release() for freeing fb_info structures allocated
with framebuffer_alloc().
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/offb.c')
-rw-r--r-- | drivers/video/offb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/offb.c b/drivers/video/offb.c index bb915a43dd62..4d8c54c23dd7 100644 --- a/drivers/video/offb.c +++ b/drivers/video/offb.c | |||
@@ -493,7 +493,7 @@ static void __init offb_init_fb(const char *name, const char *full_name, | |||
493 | iounmap(par->cmap_adr); | 493 | iounmap(par->cmap_adr); |
494 | par->cmap_adr = NULL; | 494 | par->cmap_adr = NULL; |
495 | iounmap(info->screen_base); | 495 | iounmap(info->screen_base); |
496 | kfree(info); | 496 | framebuffer_release(info); |
497 | release_mem_region(res_start, res_size); | 497 | release_mem_region(res_start, res_size); |
498 | return; | 498 | return; |
499 | } | 499 | } |