Skip to content

Commit

Permalink
[media] frontends/s5h1420: Change: clock_settting to clock_setting
Browse files Browse the repository at this point in the history
Changes clock_settting to clock_setting.

Note: This could be intentionally set this way from the beginning and/or
is a typo.

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Justin P. Mattock authored and Mauro Carvalho Chehab committed Jul 27, 2011
1 parent 79a5b9a commit c3f305a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/media/dvb/frontends/s5h1420.c
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ static int s5h1420_set_frontend(struct dvb_frontend* fe,
struct s5h1420_state* state = fe->demodulator_priv;
int frequency_delta;
struct dvb_frontend_tune_settings fesettings;
uint8_t clock_settting;
uint8_t clock_setting;

dprintk("enter %s\n", __func__);

Expand Down Expand Up @@ -684,19 +684,19 @@ static int s5h1420_set_frontend(struct dvb_frontend* fe,
switch (state->fclk) {
default:
case 88000000:
clock_settting = 80;
clock_setting = 80;
break;
case 86000000:
clock_settting = 78;
clock_setting = 78;
break;
case 80000000:
clock_settting = 72;
clock_setting = 72;
break;
case 59000000:
clock_settting = 51;
clock_setting = 51;
break;
case 44000000:
clock_settting = 36;
clock_setting = 36;
break;
}
dprintk("pll01: %d, ToneFreq: %d\n", state->fclk/1000000 - 8, (state->fclk + (TONE_FREQ * 32) - 1) / (TONE_FREQ * 32));
Expand Down

0 comments on commit c3f305a

Please sign in to comment.