Skip to content

Commit

Permalink
V4L/DVB (6662): Fix standard selection for PAL
Browse files Browse the repository at this point in the history
Not all 8MHz firmware are marked with F8MHz.

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 2800ae9 commit cca8379
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/media/video/tuner-xc2028.c
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,9 @@ static int check_firmware(struct dvb_frontend *fe, enum tuner_mode new_mode,
new_fw.id |= parse_audio_std_option();

rc = load_firmware(fe, new_fw.type, &new_fw.id);
if (rc == -ENOENT)
rc = load_firmware(fe, new_fw.type & ~F8MHZ, &new_fw.id);

if (rc < 0)
goto fail;

Expand Down

0 comments on commit cca8379

Please sign in to comment.