V4L/DVB (6610): Fix a wrong typecast

Signed-off-by: Michel Ludwig <michel.ludwig@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Michel Ludwig 2007-11-16 07:19:35 -03:00 committed by Mauro Carvalho Chehab
parent 993efa7133
commit 2fc580ffeb

View file

@ -311,7 +311,7 @@ static int load_all_firmwares(struct dvb_frontend *fe)
id = le64_to_cpu(*(v4l2_std_id *) p);
p += sizeof(id);
size = le32_to_cpu(*(v4l2_std_id *) p);
size = le32_to_cpu(*(__u32 *) p);
p += sizeof(size);
if ((!size) || (size + p > endp)) {