diff options
author | David T.L. Wong <davidtlwong@gmail.com> | 2009-10-26 08:25:52 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 18:40:55 -0200 |
commit | e29cd96715ab8b9315fb50096df4677a23d7d6a7 (patch) | |
tree | 1b8326af918801298225974b4ce4400d86276ce2 /drivers/media/dvb/frontends | |
parent | 6f0d8c020ecff4acb959627109d3b81ded211b70 (diff) | |
download | blackbird-op-linux-e29cd96715ab8b9315fb50096df4677a23d7d6a7.tar.gz blackbird-op-linux-e29cd96715ab8b9315fb50096df4677a23d7d6a7.zip |
V4L/DVB (13212): fix gcc-4.3.3 compilation error at dib7000p_pid_filter(): missing parameter name
Signed-off-by: David T.L. Wong <davidtlwong@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends')
-rw-r--r-- | drivers/media/dvb/frontends/dib7000p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/dib7000p.h b/drivers/media/dvb/frontends/dib7000p.h index 3a769df3c86f..805dd13a97ee 100644 --- a/drivers/media/dvb/frontends/dib7000p.h +++ b/drivers/media/dvb/frontends/dib7000p.h @@ -97,7 +97,7 @@ static inline int dib7000pc_detection(struct i2c_adapter *i2c_adap) printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); return -ENODEV; } -static inline int dib7000p_pid_filter(struct dvb_frontend *, u8 id, u16 pid, u8 onoff) +static inline int dib7000p_pid_filter(struct dvb_frontend *fe, u8 id, u16 pid, u8 onoff) { printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); return -ENODEV; |