diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-04-26 04:43:59 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 17:20:56 -0400 |
commit | e9785250ef2eead8bd5e9166679c0be0595df387 (patch) | |
tree | 8bc16b02d4f80206190183e7a9d3224395e9203a /drivers/media/dvb/frontends/drx397xD.c | |
parent | f8eaaf4f2a2810d6e486da2916ef07f7e00665c9 (diff) |
V4L/DVB (11723): Link firmware to physical device
Use the physical device rather than the i2c adapter as the reference
device when loading firmwares. This will prevent the sysfs name
collision with i2c-dev that has been reported many times.
I may have missed other drivers which need the same fix.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/drx397xD.c')
-rw-r--r-- | drivers/media/dvb/frontends/drx397xD.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/drx397xD.c b/drivers/media/dvb/frontends/drx397xD.c index 172f1f928f02..010075535221 100644 --- a/drivers/media/dvb/frontends/drx397xD.c +++ b/drivers/media/dvb/frontends/drx397xD.c | |||
@@ -123,10 +123,10 @@ static int drx_load_fw(struct drx397xD_state *s, enum fw_ix ix) | |||
123 | } | 123 | } |
124 | memset(&fw[ix].data[0], 0, sizeof(fw[0].data)); | 124 | memset(&fw[ix].data[0], 0, sizeof(fw[0].data)); |
125 | 125 | ||
126 | if (request_firmware(&fw[ix].file, fw[ix].name, &s->i2c->dev) != 0) { | 126 | rc = request_firmware(&fw[ix].file, fw[ix].name, s->i2c->dev.parent); |
127 | if (rc != 0) { | ||
127 | printk(KERN_ERR "%s: Firmware \"%s\" not available\n", | 128 | printk(KERN_ERR "%s: Firmware \"%s\" not available\n", |
128 | mod_name, fw[ix].name); | 129 | mod_name, fw[ix].name); |
129 | rc = -ENOENT; | ||
130 | goto exit_err; | 130 | goto exit_err; |
131 | } | 131 | } |
132 | 132 | ||