mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH RESEND] media: cros-ec-cec: do not bail on device_init_wakeup failure
@ 2020-06-22 10:05 Dariusz Marcinkiewicz
  2020-06-22 10:23 ` Hans Verkuil
  0 siblings, 1 reply; 5+ messages in thread
From: Dariusz Marcinkiewicz @ 2020-06-22 10:05 UTC (permalink / raw)
  To: linux-media
  Cc: narmstrong, Dariusz Marcinkiewicz, Hans Verkuil,
	Mauro Carvalho Chehab, Benson Leung, Enric Balletbo i Serra,
	Guenter Roeck, Alexandre Belloni, Lee Jones, Sebastian Reichel,
	Dariusz Marcinkiewicz, linux-kernel

Do not fail probing when device_init_wakeup fails.

device_init_wakeup fails when the device is already enabled as wakeup
device. Hence, the driver fails to probe the device if:
- The device has already been enabled for wakeup (via e.g. sysfs)
- The driver has been unloaded and is being loaded again.

This goal of the patch is to fix the above cases.

Overwhelming majority of the drivers do not check device_init_wakeup
return value.

Signed-off-by: Dariusz Marcinkiewicz <darekm@google.com>
---
 drivers/media/cec/platform/cros-ec/cros-ec-cec.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/media/cec/platform/cros-ec/cros-ec-cec.c b/drivers/media/cec/platform/cros-ec/cros-ec-cec.c
index 0e7e2772f08f..2d95e16cd248 100644
--- a/drivers/media/cec/platform/cros-ec/cros-ec-cec.c
+++ b/drivers/media/cec/platform/cros-ec/cros-ec-cec.c
@@ -277,11 +277,7 @@ static int cros_ec_cec_probe(struct platform_device *pdev)
 	platform_set_drvdata(pdev, cros_ec_cec);
 	cros_ec_cec->cros_ec = cros_ec;
 
-	ret = device_init_wakeup(&pdev->dev, 1);
-	if (ret) {
-		dev_err(&pdev->dev, "failed to initialize wakeup\n");
-		return ret;
-	}
+	device_init_wakeup(&pdev->dev, 1);
 
 	cros_ec_cec->adap = cec_allocate_adapter(&cros_ec_cec_ops, cros_ec_cec,
 						 DRV_NAME,
-- 
2.27.0.290.gba653c62da-goog


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

end of thread, other threads:[~2020-06-24 16:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-22 10:05 [PATCH RESEND] media: cros-ec-cec: do not bail on device_init_wakeup failure Dariusz Marcinkiewicz
2020-06-22 10:23 ` Hans Verkuil
2020-06-24 12:40   ` Dariusz Marcinkiewicz
2020-06-24 14:45     ` Guenter Roeck
2020-06-24 16:39       ` Dariusz Marcinkiewicz

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®