]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
media: raspberrypi: Switch to remove_new
authorStephen Rothwell <sfr@canb.auug.org.au>
Tue, 9 Jul 2024 06:37:15 +0000 (16:37 +1000)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 12 Jul 2024 08:11:43 +0000 (10:11 +0200)
The remove callback's return value is about to change from int to void,
this is done by commit 0edb555a65d1 ("platform: Make
platform_driver::remove() return void"). Prepare for merging the patch by
switching the PiSP driver from remove to remove_new callback.

Fixes: 12187bd5d4f8 ("media: raspberrypi: Add support for PiSP BE")
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Naushir Patuck <naush@raspberrypi.com>
Acked-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/platform/raspberrypi/pisp_be/pisp_be.c

index e74df5b116dc2783558ef8afa237867235d0202a..65ff2382cffe9e9ba71c5a01b8802e700c726470 100644 (file)
@@ -1756,7 +1756,7 @@ pm_runtime_disable_err:
        return ret;
 }
 
-static int pispbe_remove(struct platform_device *pdev)
+static void pispbe_remove(struct platform_device *pdev)
 {
        struct pispbe_dev *pispbe = platform_get_drvdata(pdev);
 
@@ -1765,8 +1765,6 @@ static int pispbe_remove(struct platform_device *pdev)
        pispbe_runtime_suspend(pispbe->dev);
        pm_runtime_dont_use_autosuspend(pispbe->dev);
        pm_runtime_disable(pispbe->dev);
-
-       return 0;
 }
 
 static const struct dev_pm_ops pispbe_pm_ops = {
@@ -1783,7 +1781,7 @@ MODULE_DEVICE_TABLE(of, pispbe_of_match);
 
 static struct platform_driver pispbe_pdrv = {
        .probe          = pispbe_probe,
-       .remove         = pispbe_remove,
+       .remove_new     = pispbe_remove,
        .driver         = {
                .name   = PISPBE_NAME,
                .of_match_table = pispbe_of_match,