diff options
author | Jassi Brar <jaswinder.singh@linaro.org> | 2014-01-12 08:21:28 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-01-15 11:34:33 -0200 |
commit | 1045d81d301055b162a3d308e1fb81d2b62a1f2a (patch) | |
tree | bd99f6c398dc4c6f2ec4e93bba465df6969c3d4e /drivers/media | |
parent | b3c8154eb9a19d45355a53d81d2ccdbc22d0cdab (diff) | |
download | linux-1045d81d301055b162a3d308e1fb81d2b62a1f2a.tar.gz linux-1045d81d301055b162a3d308e1fb81d2b62a1f2a.tar.bz2 linux-1045d81d301055b162a3d308e1fb81d2b62a1f2a.zip |
[media] m2m-deinterlace: fix allocated struct type
'xt' points to a dma_interleaved_template and not a dma_async_tx_descriptor.
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/platform/m2m-deinterlace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/m2m-deinterlace.c b/drivers/media/platform/m2m-deinterlace.c index 65cab70fefcb..6bb86b581a34 100644 --- a/drivers/media/platform/m2m-deinterlace.c +++ b/drivers/media/platform/m2m-deinterlace.c @@ -918,7 +918,7 @@ static int deinterlace_open(struct file *file) return ret; } - ctx->xt = kzalloc(sizeof(struct dma_async_tx_descriptor) + + ctx->xt = kzalloc(sizeof(struct dma_interleaved_template) + sizeof(struct data_chunk), GFP_KERNEL); if (!ctx->xt) { kfree(ctx); |