diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-09 16:35:26 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-27 16:55:49 -0400 |
commit | e4f4f8758b4c3702761e46f24ee99e34823a0f28 (patch) | |
tree | 93b87cb4060451b1d69b78504ee4d284dde529ac /drivers/media/video | |
parent | fec528b77f9be3e7ebb8d7c25888b0cf9fb8e8d6 (diff) |
[media] drxk: Add a parameter for the microcode name
The microcode firmware provided on Terratec H5 seems to be
different. Add a parameter to allow specifying a different
firmware per-device.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-dvb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/em28xx/em28xx-dvb.c b/drivers/media/video/em28xx/em28xx-dvb.c index b8686c1eb3b..93f0af505b0 100644 --- a/drivers/media/video/em28xx/em28xx-dvb.c +++ b/drivers/media/video/em28xx/em28xx-dvb.c | |||
@@ -301,10 +301,10 @@ static struct drxd_config em28xx_drxd = { | |||
301 | .disable_i2c_gate_ctrl = 1, | 301 | .disable_i2c_gate_ctrl = 1, |
302 | }; | 302 | }; |
303 | 303 | ||
304 | #define TERRATEC_H5_DRXK_I2C_ADDR 0x29 | ||
305 | |||
306 | struct drxk_config terratec_h5_drxk = { | 304 | struct drxk_config terratec_h5_drxk = { |
307 | .adr = 0x29, | 305 | .adr = 0x29, |
306 | .single_master = 1, | ||
307 | .microcode_name = "terratec_h5.fw", | ||
308 | }; | 308 | }; |
309 | 309 | ||
310 | static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable) | 310 | static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable) |