mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
pinctrl: denverton: Get rid of unneeded ->probe() stub
The local ->probe() stub does nothing except calling a generic Intel pin control probe function. Thus, it's not needed and generic function may be called directly. Convert the driver accordingly. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
parent
6ad3d49576
commit
185d33c2a2
@ -257,21 +257,16 @@ static const struct intel_pinctrl_soc_data dnv_soc_data = {
|
|||||||
.ncommunities = ARRAY_SIZE(dnv_communities),
|
.ncommunities = ARRAY_SIZE(dnv_communities),
|
||||||
};
|
};
|
||||||
|
|
||||||
static int dnv_pinctrl_probe(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
return intel_pinctrl_probe(pdev, &dnv_soc_data);
|
|
||||||
}
|
|
||||||
|
|
||||||
static INTEL_PINCTRL_PM_OPS(dnv_pinctrl_pm_ops);
|
static INTEL_PINCTRL_PM_OPS(dnv_pinctrl_pm_ops);
|
||||||
|
|
||||||
static const struct acpi_device_id dnv_pinctrl_acpi_match[] = {
|
static const struct acpi_device_id dnv_pinctrl_acpi_match[] = {
|
||||||
{ "INTC3000" },
|
{ "INTC3000", (kernel_ulong_t)&dnv_soc_data },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(acpi, dnv_pinctrl_acpi_match);
|
MODULE_DEVICE_TABLE(acpi, dnv_pinctrl_acpi_match);
|
||||||
|
|
||||||
static struct platform_driver dnv_pinctrl_driver = {
|
static struct platform_driver dnv_pinctrl_driver = {
|
||||||
.probe = dnv_pinctrl_probe,
|
.probe = intel_pinctrl_probe_by_hid,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "denverton-pinctrl",
|
.name = "denverton-pinctrl",
|
||||||
.acpi_match_table = dnv_pinctrl_acpi_match,
|
.acpi_match_table = dnv_pinctrl_acpi_match,
|
||||||
|
Loading…
Reference in New Issue
Block a user