dect
/
linux-2.6
Archived
13
0
Fork 0

V4L/DVB (7969): m920x: unaligned access

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Al Viro 2008-05-21 00:32:41 -03:00 committed by Mauro Carvalho Chehab
parent 581a7f1a2d
commit fa9c13a383
1 changed files with 4 additions and 3 deletions

View File

@ -16,6 +16,7 @@
#include "qt1010.h"
#include "tda1004x.h"
#include "tda827x.h"
#include <asm/unaligned.h>
/* debug */
static int dvb_usb_m920x_debug;
@ -347,13 +348,13 @@ static int m920x_firmware_download(struct usb_device *udev, const struct firmwar
for (pass = 0; pass < 2; pass++) {
for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
value = le16_to_cpu(*(u16 *)(fw->data + i));
value = get_unaligned_le16(fw->data + i);
i += sizeof(u16);
index = le16_to_cpu(*(u16 *)(fw->data + i));
index = get_unaligned_le16(fw->data + i);
i += sizeof(u16);
size = le16_to_cpu(*(u16 *)(fw->data + i));
size = get_unaligned_le16(fw->data + i);
i += sizeof(u16);
if (pass == 1) {