aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Reitmayr <treitmayr@devbase.at>2008-12-29 10:59:29 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-30 09:39:38 -0200
commitd29ca09d50309bb7df5d57aec88efdcd09a56f9f (patch)
treeecd4dd717dc5603cf132a201208a3cd0ee47a304
parentV4L/DVB (9980): em28xx: simplify analog logic (diff)
downloadlinux-dev-d29ca09d50309bb7df5d57aec88efdcd09a56f9f.tar.xz
linux-dev-d29ca09d50309bb7df5d57aec88efdcd09a56f9f.zip
V4L/DVB (9981): [PATCH] usb-urb.c: Fix initialization of URB list.
Fix the initialization of the URB list for a DVB-USB device to prevent problems on certain platforms (MIPS). Signed-off-by: Thomas Reitmayr <treitmayr@devbase.at> Signed-off-by: Patrick Boettcher <pb@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/dvb-usb/usb-urb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/usb-urb.c b/drivers/media/dvb/dvb-usb/usb-urb.c
index da93b9e982c0..9da2cc95ca13 100644
--- a/drivers/media/dvb/dvb-usb/usb-urb.c
+++ b/drivers/media/dvb/dvb-usb/usb-urb.c
@@ -156,7 +156,8 @@ static int usb_bulk_urb_init(struct usb_data_stream *stream)
stream->props.u.bulk.buffersize,
usb_urb_complete, stream);
- stream->urb_list[i]->transfer_flags = 0;
+ stream->urb_list[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
+ stream->urb_list[i]->transfer_dma = stream->dma_addr[i];
stream->urbs_initialized++;
}
return 0;