mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-26 03:17:48 +00:00
V4L/DVB (12970): saa7164: fix 64bit build warning
Fix the following build warning: CC [M] saa7164-core.o saa7164-core.c: In function 'saa7164_buffer_deliver': saa7164-core.c:113: warning: passing argument 2 of 'dvb_dmx_swfilter_packets' from incompatible pointer type Signed-off-by: Michael Krufky <mkrufky@kernellabs.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
66cb930e95
commit
6df84ea86e
@ -77,7 +77,7 @@ static void saa7164_buffer_deliver(struct saa7164_buffer *buf)
|
|||||||
struct saa7164_tsport *port = buf->port;
|
struct saa7164_tsport *port = buf->port;
|
||||||
|
|
||||||
/* Feed the transport payload into the kernel demux */
|
/* Feed the transport payload into the kernel demux */
|
||||||
dvb_dmx_swfilter_packets(&port->dvb.demux, buf->cpu,
|
dvb_dmx_swfilter_packets(&port->dvb.demux, (u8 *)buf->cpu,
|
||||||
SAA7164_TS_NUMBER_OF_LINES);
|
SAA7164_TS_NUMBER_OF_LINES);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user