media: cros-ec-cec: do not bail on device_init_wakeup failure
authorDariusz Marcinkiewicz <darekm@google.com>
Mon, 22 Jun 2020 11:46:36 +0000 (13:46 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sat, 4 Jul 2020 10:45:45 +0000 (12:45 +0200)
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 (by 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 code.

Fixes: cd70de2d356ee ("media: platform: Add ChromeOS EC CEC driver")
Signed-off-by: Dariusz Marcinkiewicz <darekm@google.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/cec/platform/cros-ec/cros-ec-cec.c

index 0e7e277..2d95e16 100644 (file)
@@ -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,