提交 fdb9fb6c 编写于 作者: C Colin Ian King 提交者: Daniel Vetter

video: fbdev: asiliantfb: remove redundant assignment to variable Ftarget

Variable Ftarget is being initialized with a value that is never read,
it is being re-assigned a different value a little later on. The
assignment is redundant and can be removed.
Signed-off-by: NColin Ian King <colin.i.king@gmail.com>
Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20211230155202.355336-1-colin.i.king@gmail.com
上级 a320c3a3
...@@ -110,7 +110,7 @@ static const struct fb_ops asiliantfb_ops = { ...@@ -110,7 +110,7 @@ static const struct fb_ops asiliantfb_ops = {
static void asiliant_calc_dclk2(u32 *ppixclock, u8 *dclk2_m, u8 *dclk2_n, u8 *dclk2_div) static void asiliant_calc_dclk2(u32 *ppixclock, u8 *dclk2_m, u8 *dclk2_n, u8 *dclk2_div)
{ {
unsigned pixclock = *ppixclock; unsigned pixclock = *ppixclock;
unsigned Ftarget = 1000000 * (1000000 / pixclock); unsigned Ftarget;
unsigned n; unsigned n;
unsigned best_error = 0xffffffff; unsigned best_error = 0xffffffff;
unsigned best_m = 0xffffffff, unsigned best_m = 0xffffffff,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册