diff options
author | Oliver Endriss <o.endriss@gmx.de> | 2006-09-14 00:15:13 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-09-26 12:30:36 -0300 |
commit | d98821e21ecbadb8c4dbf608d25454a8835c0667 (patch) | |
tree | c9450c2ce96823ae8cdeaaefc22e42bf4c9d11d7 /drivers/media/dvb/ttpci/av7110.c | |
parent | b04c1baf485f4c3a25d8dbc187156030f9247cb0 (diff) | |
download | blackbird-op-linux-d98821e21ecbadb8c4dbf608d25454a8835c0667.tar.gz blackbird-op-linux-d98821e21ecbadb8c4dbf608d25454a8835c0667.zip |
V4L/DVB (4630): Av7110: FW_LOADER depemdency fixed
Do not select FW_LOADER unless it is really required.
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/ttpci/av7110.c')
-rw-r--r-- | drivers/media/dvb/ttpci/av7110.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/dvb/ttpci/av7110.c b/drivers/media/dvb/ttpci/av7110.c index 57a101414307..bba23bcd1b11 100644 --- a/drivers/media/dvb/ttpci/av7110.c +++ b/drivers/media/dvb/ttpci/av7110.c @@ -1701,9 +1701,13 @@ static int alps_tdlb7_tuner_set_params(struct dvb_frontend* fe, struct dvb_front static int alps_tdlb7_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name) { +#if defined(CONFIG_DVB_SP8870) || defined(CONFIG_DVB_SP8870_MODULE) struct av7110* av7110 = (struct av7110*) fe->dvb->priv; return request_firmware(fw, name, &av7110->dev->pci->dev); +#else + return -EINVAL; +#endif } static struct sp8870_config alps_tdlb7_config = { |