diff options
author | Andy Walls <awalls@radix.net> | 2009-11-04 20:33:33 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 15:41:50 -0500 |
commit | f0076e60b5a61072b671b597ed2cc210f1b3cbf1 (patch) | |
tree | 307f8fbfb38a983931560a6465fd5b5b1eb9e066 /drivers/media/video/cx18/cx18-queue.c | |
parent | c76e6f11662f49dd31a49a07f4c06ee9bea6572b (diff) |
V4L/DVB (13426): cx18: Rename struct cx18_mdl to struct cx18_mdl_ent
Rename type in anticipation of implementing a struct cx18_mdl type that
actually keeps track of a memory descriptor list.
Signed-off-by: Andy Walls <awalls@radix.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx18/cx18-queue.c')
-rw-r--r-- | drivers/media/video/cx18/cx18-queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx18/cx18-queue.c b/drivers/media/video/cx18/cx18-queue.c index fa1ed7897d97..9061ff3eac6f 100644 --- a/drivers/media/video/cx18/cx18-queue.c +++ b/drivers/media/video/cx18/cx18-queue.c | |||
@@ -201,7 +201,7 @@ int cx18_stream_alloc(struct cx18_stream *s) | |||
201 | 201 | ||
202 | CX18_ERR("Too many buffers, cannot fit in SCB area\n"); | 202 | CX18_ERR("Too many buffers, cannot fit in SCB area\n"); |
203 | CX18_ERR("Max buffers = %zd\n", | 203 | CX18_ERR("Max buffers = %zd\n", |
204 | bufsz / sizeof(struct cx18_mdl)); | 204 | bufsz / sizeof(struct cx18_mdl_ent)); |
205 | return -ENOMEM; | 205 | return -ENOMEM; |
206 | } | 206 | } |
207 | 207 | ||