[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1295608686.3976.9.camel@phoenix>
Date: Fri, 21 Jan 2011 19:18:06 +0800
From: Axel Lin <axel.lin@...il.com>
To: linux-kernel@...r.kernel.org
Cc: Lennert Buytenhek <buytenh@...vell.com>,
Green Wan <gwan@...vell.com>,
Eric Miao <eric.y.miao@...il.com>,
Marek Vasut <marek.vasut@...il.com>,
Haojian Zhuang <haojian.zhuang@...vell.com>,
linux-fbdev@...r.kernel.org, Paul Mundt <lethal@...ux-sh.org>,
Lennert Buytenhek <buytenh@...vell.com>,
Green Wan <gwan@...vell.com>,
Eric Miao <eric.y.miao@...il.com>,
Marek Vasut <marek.vasut@...il.com>,
Haojian Zhuang <haojian.zhuang@...vell.com>,
linux-fbdev@...r.kernel.org, Paul Mundt <lethal@...ux-sh.org>
Subject: [PATCH] video: pxa168fb: remove a redundant pxa168fb_check_var call
Current implementation calls pxa168fb_check_var twice in pxa168fb_probe.
Signed-off-by: Axel Lin <axel.lin@...il.com>
---
drivers/video/pxa168fb.c | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/drivers/video/pxa168fb.c b/drivers/video/pxa168fb.c
index cea6403..35f61dd 100644
--- a/drivers/video/pxa168fb.c
+++ b/drivers/video/pxa168fb.c
@@ -701,16 +701,12 @@ static int __devinit pxa168fb_probe(struct platform_device *pdev)
*/
pxa168fb_init_mode(info, mi);
- ret = pxa168fb_check_var(&info->var, info);
- if (ret)
- goto failed_free_fbmem;
-
/*
* Fill in sane defaults.
*/
ret = pxa168fb_check_var(&info->var, info);
if (ret)
- goto failed;
+ goto failed_free_fbmem;
/*
* enable controller clock
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists