Skip to content

Commit

Permalink
[media] max2165: trival fix for some -Wuninitialized warning
Browse files Browse the repository at this point in the history
Fix for some -Wuninitialized compiler warnings.

Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Danny Kukawka authored and Mauro Carvalho Chehab committed Feb 13, 2012
1 parent 9fa728e commit 32d7e63
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions drivers/media/common/tuners/max2165.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ int fixpt_div32(u32 dividend, u32 divisor, u32 *quotient, u32 *fraction)
int i;

if (0 == divisor)
return -1;
return -EINVAL;

q = dividend / divisor;
remainder = dividend - q * divisor;
Expand All @@ -194,10 +194,13 @@ static int max2165_set_rf(struct max2165_priv *priv, u32 freq)
u8 tf_ntch;
u32 t;
u32 quotient, fraction;
int ret;

/* Set PLL divider according to RF frequency */
fixpt_div32(freq / 1000, priv->config->osc_clk * 1000,
&quotient, &fraction);
ret = fixpt_div32(freq / 1000, priv->config->osc_clk * 1000,
&quotient, &fraction);
if (ret != 0)
return ret;

/* 20-bit fraction */
fraction >>= 12;
Expand Down

0 comments on commit 32d7e63

Please sign in to comment.