[PATCH 33/35] media: ttpci: Refator return path

From: Ricardo Ribalda
Date: Mon Apr 15 2024 - 15:46:01 EST


This is a nop, but let cocci now that this is not a good candidate for
min()

drivers/media/pci/ttpci/budget-core.c:280:15-16: WARNING opportunity for min()

Signed-off-by: Ricardo Ribalda <ribalda@xxxxxxxxxxxx>
---
drivers/media/pci/ttpci/budget-core.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/media/pci/ttpci/budget-core.c b/drivers/media/pci/ttpci/budget-core.c
index 25f44c3eebf3..2d85ae1ef50b 100644
--- a/drivers/media/pci/ttpci/budget-core.c
+++ b/drivers/media/pci/ttpci/budget-core.c
@@ -277,7 +277,10 @@ static int ttpci_budget_debiwrite_nolock(struct budget *budget, u32 config,
saa7146_write(saa, MC2, (2 << 16) | 2);

result = saa7146_wait_for_debi_done(saa, nobusyloop);
- return result < 0 ? result : 0;
+
+ if (result < 0)
+ return result;
+ return 0;
}

int ttpci_budget_debiwrite(struct budget *budget, u32 config, int addr,

--
2.44.0.683.g7961c838ac-goog