diff options
author | Andy Walls <awalls@radix.net> | 2009-11-04 22:33:33 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 18:41:50 -0200 |
commit | f0076e60b5a61072b671b597ed2cc210f1b3cbf1 (patch) | |
tree | 307f8fbfb38a983931560a6465fd5b5b1eb9e066 /drivers/media/video/cx18/cx18-scb.h | |
parent | c76e6f11662f49dd31a49a07f4c06ee9bea6572b (diff) | |
download | talos-obmc-linux-f0076e60b5a61072b671b597ed2cc210f1b3cbf1.tar.gz talos-obmc-linux-f0076e60b5a61072b671b597ed2cc210f1b3cbf1.zip |
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-scb.h')
-rw-r--r-- | drivers/media/video/cx18/cx18-scb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx18/cx18-scb.h b/drivers/media/video/cx18/cx18-scb.h index 1dc1c431f5a1..368f23d08709 100644 --- a/drivers/media/video/cx18/cx18-scb.h +++ b/drivers/media/video/cx18/cx18-scb.h @@ -81,7 +81,7 @@ /* This structure is used by EPU to provide memory descriptors in its memory */ -struct cx18_mdl { +struct cx18_mdl_ent { u32 paddr; /* Physical address of a buffer segment */ u32 length; /* Length of the buffer segment */ }; @@ -272,7 +272,7 @@ struct cx18_scb { struct cx18_mailbox ppu2epu_mb; struct cx18_mdl_ack cpu_mdl_ack[CX18_MAX_STREAMS][CX18_MAX_MDL_ACKS]; - struct cx18_mdl cpu_mdl[1]; + struct cx18_mdl_ent cpu_mdl[1]; }; void cx18_init_scb(struct cx18 *cx); |