aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@linaro.org>2015-06-07 10:20:11 -0400
committerRob Herring <robh@kernel.org>2015-08-25 12:29:57 -0400
commit7f5dcaf1fdf289767a126a0a5cc3ef39b5254b06 (patch)
treeb5d2355cd8166b3d79f80a4ec5ff0b8161f79338
parent3a496b00b6f90c41bd21a410871dfc97d4f3c7ab (diff)
drivercore: Fix unregistration path of platform devices
The unregister path of platform_device is broken. On registration, it will register all resources with either a parent already set, or type==IORESOURCE_{IO,MEM}. However, on unregister it will release everything with type==IORESOURCE_{IO,MEM}, but ignore the others. There are also cases where resources don't get registered in the first place, like with devices created by of_platform_populate()*. Fix the unregister path to be symmetrical with the register path by checking the parent pointer instead of the type field to decide which resources to unregister. This is safe because the upshot of the registration path algorithm is that registered resources have a parent pointer, and non-registered resources do not. * It can be argued that of_platform_populate() should be registering it's resources, and they argument has some merit. However, there are quite a few platforms that end up broken if we try to do that due to overlapping resources in the device tree. Until that is fixed, we need to solve the immediate problem. Cc: Pantelis Antoniou <pantelis.antoniou@konsulko.com> Cc: Wolfram Sang <wsa@the-dreams.de> Cc: Rob Herring <robh@kernel.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Grant Likely <grant.likely@linaro.org> Tested-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Tested-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Cc: stable@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r--drivers/base/platform.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index 063f0ab15259..f80aaaf9f610 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -375,9 +375,7 @@ int platform_device_add(struct platform_device *pdev)
375 375
376 while (--i >= 0) { 376 while (--i >= 0) {
377 struct resource *r = &pdev->resource[i]; 377 struct resource *r = &pdev->resource[i];
378 unsigned long type = resource_type(r); 378 if (r->parent)
379
380 if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
381 release_resource(r); 379 release_resource(r);
382 } 380 }
383 381
@@ -408,9 +406,7 @@ void platform_device_del(struct platform_device *pdev)
408 406
409 for (i = 0; i < pdev->num_resources; i++) { 407 for (i = 0; i < pdev->num_resources; i++) {
410 struct resource *r = &pdev->resource[i]; 408 struct resource *r = &pdev->resource[i];
411 unsigned long type = resource_type(r); 409 if (r->parent)
412
413 if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
414 release_resource(r); 410 release_resource(r);
415 } 411 }
416 } 412 }