]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
accel/rocket: factor out code with find_core_for_dev in rocket_remove
authorQuentin Schulz <quentin.schulz@cherry.de>
Mon, 15 Dec 2025 17:07:56 +0000 (18:07 +0100)
committerTomeu Vizoso <tomeu@tomeuvizoso.net>
Sat, 10 Jan 2026 16:49:14 +0000 (17:49 +0100)
There already is a function to return the offset of the core for a given
struct device, so let's reuse that function instead of reimplementing
the same logic.

There's one change in behavior when a struct device is passed which
doesn't match any core's. Before, we would continue through
rocket_remove() but now we exit early, to match what other callers of
find_core_for_dev() (rocket_device_runtime_resume/suspend()) are doing.
This however should never happen. Aside from that, no intended change in
behavior.

Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Reviewed-by: Tomeu Vizoso <tomeu@tomeuvizoso.net>
Signed-off-by: Tomeu Vizoso <tomeu@tomeuvizoso.net>
Link: https://patch.msgid.link/20251215-rocket-reuse-find-core-v1-1-be86a1d2734c@cherry.de
drivers/accel/rocket/rocket_drv.c

index f6ef4c7aeef11d2c471fdb0685bd6f8227b51009..e4cb2efeb55a4d56f9ff13de9004991e0e6b8299 100644 (file)
@@ -193,17 +193,18 @@ static int rocket_probe(struct platform_device *pdev)
        return ret;
 }
 
+static int find_core_for_dev(struct device *dev);
+
 static void rocket_remove(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
+       int core = find_core_for_dev(dev);
 
-       for (unsigned int core = 0; core < rdev->num_cores; core++) {
-               if (rdev->cores[core].dev == dev) {
-                       rocket_core_fini(&rdev->cores[core]);
-                       rdev->num_cores--;
-                       break;
-               }
-       }
+       if (core < 0)
+               return;
+
+       rocket_core_fini(&rdev->cores[core]);
+       rdev->num_cores--;
 
        if (rdev->num_cores == 0) {
                /* Last core removed, deinitialize DRM device. */