Skip to content

Commit

Permalink
Revert "base/platform: Remove code duplication"
Browse files Browse the repository at this point in the history
This reverts commit 6d9d4b1 as it
breaks working machines.

Cc: Rob Herring <[email protected]>
Cc: Ricardo Ribalda Delgado <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
gregkh committed Jun 10, 2015
1 parent 987aec3 commit 8b2dceb
Showing 1 changed file with 35 additions and 25 deletions.
60 changes: 35 additions & 25 deletions drivers/base/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,25 +298,6 @@ int platform_device_add_data(struct platform_device *pdev, const void *data,
}
EXPORT_SYMBOL_GPL(platform_device_add_data);

static void platform_device_cleanout(struct platform_device *pdev, int n_res)
{
int i;

if (pdev->id_auto) {
ida_simple_remove(&platform_devid_ida, pdev->id);
pdev->id = PLATFORM_DEVID_AUTO;
}

for (i = 0; i < n_res; i++) {
struct resource *r = &pdev->resource[i];
unsigned long type = resource_type(r);

if ((type == IORESOURCE_MEM || type == IORESOURCE_IO) &&
r->parent)
release_resource(r);
}
}

/**
* platform_device_add - add a platform device to device hierarchy
* @pdev: platform device we're adding
Expand Down Expand Up @@ -390,8 +371,23 @@ int platform_device_add(struct platform_device *pdev)
dev_name(&pdev->dev), dev_name(pdev->dev.parent));

ret = device_add(&pdev->dev);
if (ret)
platform_device_cleanout(pdev, i);
if (ret == 0)
return ret;

/* Failure path */
if (pdev->id_auto) {
ida_simple_remove(&platform_devid_ida, pdev->id);
pdev->id = PLATFORM_DEVID_AUTO;
}

while (--i >= 0) {
struct resource *r = &pdev->resource[i];
unsigned long type = resource_type(r);

if ((type == IORESOURCE_MEM || type == IORESOURCE_IO) &&
r->parent)
release_resource(r);
}

return ret;
}
Expand All @@ -407,11 +403,25 @@ EXPORT_SYMBOL_GPL(platform_device_add);
*/
void platform_device_del(struct platform_device *pdev)
{
if (!pdev)
return;
int i;

if (pdev) {
device_del(&pdev->dev);

device_del(&pdev->dev);
platform_device_cleanout(pdev, pdev->num_resources);
if (pdev->id_auto) {
ida_simple_remove(&platform_devid_ida, pdev->id);
pdev->id = PLATFORM_DEVID_AUTO;
}

for (i = 0; i < pdev->num_resources; i++) {
struct resource *r = &pdev->resource[i];
unsigned long type = resource_type(r);

if ((type == IORESOURCE_MEM || type == IORESOURCE_IO) &&
r->parent)
release_resource(r);
}
}
}
EXPORT_SYMBOL_GPL(platform_device_del);

Expand Down

0 comments on commit 8b2dceb

Please sign in to comment.