mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 23:23:03 +00:00
1592e84c7d
The .remove() callback for a platform driver returns an int which makes many driver authors wrongly assume it's possible to do error handling by returning an error code. However the value returned is ignored (apart from emitting a warning) and this typically results in resource leaks. To improve here there is a quest to make the remove callback return void. In the first step of this quest all drivers are converted to .remove_new(), which already returns void. Eventually after all drivers are converted, .remove_new() will be renamed to .remove(). Trivially convert this driver from always returning zero in the remove callback to the void returning variant. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20240429130119.1518073-6-alexander.shishkin@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
84 lines
2.0 KiB
C
84 lines
2.0 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Intel(R) Trace Hub ACPI driver
|
|
*
|
|
* Copyright (C) 2017 Intel Corporation.
|
|
*/
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/module.h>
|
|
#include <linux/device.h>
|
|
#include <linux/sysfs.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/acpi.h>
|
|
|
|
#include "intel_th.h"
|
|
|
|
#define DRIVER_NAME "intel_th_acpi"
|
|
|
|
static const struct intel_th_drvdata intel_th_acpi_pch = {
|
|
.host_mode_only = 1,
|
|
};
|
|
|
|
static const struct intel_th_drvdata intel_th_acpi_uncore = {
|
|
.host_mode_only = 1,
|
|
};
|
|
|
|
static const struct acpi_device_id intel_th_acpi_ids[] = {
|
|
{ "INTC1000", (kernel_ulong_t)&intel_th_acpi_uncore },
|
|
{ "INTC1001", (kernel_ulong_t)&intel_th_acpi_pch },
|
|
{ "", 0 },
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, intel_th_acpi_ids);
|
|
|
|
static int intel_th_acpi_probe(struct platform_device *pdev)
|
|
{
|
|
struct acpi_device *adev = ACPI_COMPANION(&pdev->dev);
|
|
struct resource resource[TH_MMIO_END];
|
|
const struct acpi_device_id *id;
|
|
struct intel_th *th;
|
|
int i, r;
|
|
|
|
id = acpi_match_device(intel_th_acpi_ids, &pdev->dev);
|
|
if (!id)
|
|
return -ENODEV;
|
|
|
|
for (i = 0, r = 0; i < pdev->num_resources && r < TH_MMIO_END; i++)
|
|
if (pdev->resource[i].flags &
|
|
(IORESOURCE_IRQ | IORESOURCE_MEM))
|
|
resource[r++] = pdev->resource[i];
|
|
|
|
th = intel_th_alloc(&pdev->dev, (void *)id->driver_data, resource, r);
|
|
if (IS_ERR(th))
|
|
return PTR_ERR(th);
|
|
|
|
adev->driver_data = th;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void intel_th_acpi_remove(struct platform_device *pdev)
|
|
{
|
|
struct intel_th *th = platform_get_drvdata(pdev);
|
|
|
|
intel_th_free(th);
|
|
}
|
|
|
|
static struct platform_driver intel_th_acpi_driver = {
|
|
.probe = intel_th_acpi_probe,
|
|
.remove_new = intel_th_acpi_remove,
|
|
.driver = {
|
|
.name = DRIVER_NAME,
|
|
.acpi_match_table = intel_th_acpi_ids,
|
|
},
|
|
};
|
|
|
|
module_platform_driver(intel_th_acpi_driver);
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("Intel(R) Trace Hub ACPI controller driver");
|
|
MODULE_AUTHOR("Alexander Shishkin <alexander.shishkin@intel.com>");
|