OSDN Git Service

media: aspeed: Fix an error handling path in aspeed_video_probe()
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 6 Mar 2022 18:08:07 +0000 (19:08 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 13 May 2022 07:13:17 +0000 (09:13 +0200)
commit310fda622bbd38be17fb444f7f049b137af3bc0d
treed2ce1e76a1155ce8a6a34aaa86e8b585368fac20
parenta5e9e202fe4c25ab6c57061d009a17a2369355bc
media: aspeed: Fix an error handling path in aspeed_video_probe()

A dma_free_coherent() call is missing in the error handling path of the
probe, as already done in the remove function.

In fact, this call is included in aspeed_video_free_buf(). So use the
latter both in the error handling path of the probe and in the remove
function.
It is easier to see the relation with aspeed_video_alloc_buf() this way.

Fixes: d2b4387f3bdf ("media: platform: Add Aspeed Video Engine driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/platform/aspeed/aspeed-video.c