summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAakarsh Jain <aakarsh.jain@samsung.com>2022-11-09 03:53:48 +0000
committerMauro Carvalho Chehab <mchehab@kernel.org>2022-11-25 07:34:40 +0000
commita7fa915634e6161e4ccbca819ad3d2bb614e5811 (patch)
treeb735833fdb19e5eb4b7b70f01aae01ffada44e5e
parent203ef345f220849c5072cab3595a730b95f36e9f (diff)
downloadlinux-a7fa915634e6161e4ccbca819ad3d2bb614e5811.tar.bz2
media: s5p-mfc: Optimisation of code to remove error message
Already error number provision is present for block failing, while requesting for DMA consistent memory allocation. So removing error message line from the block as recommended by scripts/checkpatch.pl. Signed-off-by: Aakarsh Jain <aakarsh.jain@samsung.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
-rw-r--r--drivers/media/platform/samsung/s5p-mfc/s5p_mfc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/platform/samsung/s5p-mfc/s5p_mfc.c b/drivers/media/platform/samsung/s5p-mfc/s5p_mfc.c
index 71c59e4ba54c..8b08306dabbf 100644
--- a/drivers/media/platform/samsung/s5p-mfc/s5p_mfc.c
+++ b/drivers/media/platform/samsung/s5p-mfc/s5p_mfc.c
@@ -1164,7 +1164,6 @@ static int s5p_mfc_configure_2port_memory(struct s5p_mfc_dev *mfc_dev)
bank2_virt = dma_alloc_coherent(mfc_dev->mem_dev[BANK_R_CTX],
align_size, &bank2_dma_addr, GFP_KERNEL);
if (!bank2_virt) {
- mfc_err("Allocating bank2 base failed\n");
s5p_mfc_release_firmware(mfc_dev);
device_unregister(mfc_dev->mem_dev[BANK_R_CTX]);
device_unregister(mfc_dev->mem_dev[BANK_L_CTX]);