Skip to content

Commit

Permalink
media: dib0700: Fix identation issue in dib8096_set_param_override()
Browse files Browse the repository at this point in the history
Fix identation issues.

Fixes: 5e9c85d ("[media] dib8096: enhancement")
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
  • Loading branch information
Gustavo A. R. Silva committed Aug 27, 2020
1 parent 210e799 commit 0cc4a0c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/media/usb/dvb-usb/dib0700_devices.c
Original file line number Diff line number Diff line change
Expand Up @@ -1659,14 +1659,14 @@ static int dib8096_set_param_override(struct dvb_frontend *fe)

switch (band) {
default:
deb_info("Warning : Rf frequency (%iHz) is not in the supported range, using VHF switch ", fe->dtv_property_cache.frequency);
deb_info("Warning : Rf frequency (%iHz) is not in the supported range, using VHF switch ", fe->dtv_property_cache.frequency);
fallthrough;
case BAND_VHF:
state->dib8000_ops.set_gpio(fe, 3, 0, 1);
break;
state->dib8000_ops.set_gpio(fe, 3, 0, 1);
break;
case BAND_UHF:
state->dib8000_ops.set_gpio(fe, 3, 0, 0);
break;
state->dib8000_ops.set_gpio(fe, 3, 0, 0);
break;
}

ret = state->set_param_save(fe);
Expand Down

0 comments on commit 0cc4a0c

Please sign in to comment.