diff options
author | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-11-20 03:43:13 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 22:02:35 +0100 |
commit | 1ad0b796a3fa3d1c1a7d16be7c70b626da2940a9 (patch) | |
tree | 157dbc4cca1b0830e55817f11b71c6e4de60e274 /drivers/media/video/tuner-xc2028.c | |
parent | V4L/DVB (6651): xc2028: mask off type correctly when searching for standard-s... (diff) | |
download | linux-1ad0b796a3fa3d1c1a7d16be7c70b626da2940a9.tar.xz linux-1ad0b796a3fa3d1c1a7d16be7c70b626da2940a9.zip |
V4L/DVB (6652): xc2028: try non-8MHZ init1 firmware
When loading init1 firmware, there may not be an 8MHz specific version.
Load the non-8MHz version if it exists.
Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/media/video/tuner-xc2028.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/video/tuner-xc2028.c b/drivers/media/video/tuner-xc2028.c index 5b646fed340f..429e81be697e 100644 --- a/drivers/media/video/tuner-xc2028.c +++ b/drivers/media/video/tuner-xc2028.c @@ -706,6 +706,9 @@ retry: tuner_dbg("Load init1 firmware, if exists\n"); rc = load_firmware(fe, BASE | INIT1 | new_fw.type, &std0); + if (rc == -ENOENT) + rc = load_firmware(fe, (BASE | INIT1 | new_fw.type) & ~F8MHZ, + &std0); if (rc < 0 && rc != -ENOENT) { tuner_err("Error %d while loading init1 firmware\n", rc); |