mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] media: davinci/vpfe_capture.c: Avoid BUG_ON for register failure
@ 2019-12-06  1:00 Aditya Pakki
  2019-12-06  9:20 ` Ezequiel Garcia
  2019-12-07 20:40 ` kbuild test robot
  0 siblings, 2 replies; 4+ messages in thread
From: Aditya Pakki @ 2019-12-06  1:00 UTC (permalink / raw)
  To: pakki001
  Cc: kjlu, Lad, Prabhakar, Mauro Carvalho Chehab, linux-media, linux-kernel

In vpfe_register_ccdc_device(), failure to allocate dev->hw_ops
invokes calls to BUG_ON(). This patch returns the error to callers
instead of crashing.

Signed-off-by: Aditya Pakki <pakki001@umn.edu>
---
 drivers/media/platform/davinci/vpfe_capture.c | 21 ++++++-------------
 1 file changed, 6 insertions(+), 15 deletions(-)

diff --git a/drivers/media/platform/davinci/vpfe_capture.c b/drivers/media/platform/davinci/vpfe_capture.c
index 916ed743d716..6d394a006977 100644
--- a/drivers/media/platform/davinci/vpfe_capture.c
+++ b/drivers/media/platform/davinci/vpfe_capture.c
@@ -168,21 +168,11 @@ int vpfe_register_ccdc_device(const struct ccdc_hw_device *dev)
 	int ret = 0;
 	printk(KERN_NOTICE "vpfe_register_ccdc_device: %s\n", dev->name);
 
-	BUG_ON(!dev->hw_ops.open);
-	BUG_ON(!dev->hw_ops.enable);
-	BUG_ON(!dev->hw_ops.set_hw_if_params);
-	BUG_ON(!dev->hw_ops.configure);
-	BUG_ON(!dev->hw_ops.set_buftype);
-	BUG_ON(!dev->hw_ops.get_buftype);
-	BUG_ON(!dev->hw_ops.enum_pix);
-	BUG_ON(!dev->hw_ops.set_frame_format);
-	BUG_ON(!dev->hw_ops.get_frame_format);
-	BUG_ON(!dev->hw_ops.get_pixel_format);
-	BUG_ON(!dev->hw_ops.set_pixel_format);
-	BUG_ON(!dev->hw_ops.set_image_window);
-	BUG_ON(!dev->hw_ops.get_image_window);
-	BUG_ON(!dev->hw_ops.get_line_length);
-	BUG_ON(!dev->hw_ops.getfid);
+	if (!dev->hw_ops) {
+		printk(KERN_ERR "could not allocate hw_ops\n");
+		ret = -EINVAL;
+		goto rvalue;
+	}
 
 	mutex_lock(&ccdc_lock);
 	if (!ccdc_cfg) {
@@ -211,6 +201,7 @@ int vpfe_register_ccdc_device(const struct ccdc_hw_device *dev)
 	ccdc_dev = dev;
 unlock:
 	mutex_unlock(&ccdc_lock);
+rvalue:
 	return ret;
 }
 EXPORT_SYMBOL(vpfe_register_ccdc_device);
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-12-08  9:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-06  1:00 [PATCH] media: davinci/vpfe_capture.c: Avoid BUG_ON for register failure Aditya Pakki
2019-12-06  9:20 ` Ezequiel Garcia
2019-12-08  9:44   ` Ezequiel Garcia
2019-12-07 20:40 ` kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®