video: add missing framebuffer_release in error path
This patch fixes a memory leak in the error path. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
1e93f390e5
commit
6359691d7e
3 changed files with 3 additions and 0 deletions
|
@ -565,6 +565,7 @@ static int __devinit cg14_probe(struct platform_device *op)
|
|||
|
||||
out_unmap_regs:
|
||||
cg14_unmap_regs(op, info, par);
|
||||
framebuffer_release(info);
|
||||
|
||||
out_err:
|
||||
return err;
|
||||
|
|
|
@ -821,6 +821,7 @@ static int __devinit cg6_probe(struct platform_device *op)
|
|||
|
||||
out_unmap_regs:
|
||||
cg6_unmap_regs(op, info, par);
|
||||
framebuffer_release(info);
|
||||
|
||||
out_err:
|
||||
return err;
|
||||
|
|
|
@ -480,6 +480,7 @@ static int __devinit tcx_probe(struct platform_device *op)
|
|||
|
||||
out_unmap_regs:
|
||||
tcx_unmap_regs(op, info, par);
|
||||
framebuffer_release(info);
|
||||
|
||||
out_err:
|
||||
return err;
|
||||
|
|
Loading…
Reference in a new issue