From b48293db4a348e9759c1f8a41a84f2e9f559decf Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Sat, 18 Jan 2014 11:13:02 -0300 Subject: [media] drx-j: dynamically load the firmware Instead of hardcoding the firmware files together with the driver, use request_firmware() way, loading it from userspace. The firmware files are placed at: http://linuxtv.org/downloads/firmware/#8 And they'll be latter submitted to linux-firmware git tree. Acked-by: Devin Heitmueller Signed-off-by: Mauro Carvalho Chehab --- drivers/media/dvb-frontends/drx39xyj/drx39xxj.h | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/media/dvb-frontends/drx39xyj/drx39xxj.h') diff --git a/drivers/media/dvb-frontends/drx39xyj/drx39xxj.h b/drivers/media/dvb-frontends/drx39xyj/drx39xxj.h index a7eb7166be15..8c24d73410bc 100644 --- a/drivers/media/dvb-frontends/drx39xyj/drx39xxj.h +++ b/drivers/media/dvb-frontends/drx39xyj/drx39xxj.h @@ -33,6 +33,7 @@ struct drx39xxj_state { struct dvb_frontend frontend; int powered_up:1; unsigned int i2c_gate_open:1; + const struct firmware *fw; }; struct dvb_frontend *drx39xxj_attach(struct i2c_adapter *i2c); -- cgit