pinctrl: cedarfork: 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
cb035d7469
commit
6ad3d49576
|
@ -330,21 +330,16 @@ static const struct intel_pinctrl_soc_data cdf_soc_data = {
|
|||
.ncommunities = ARRAY_SIZE(cdf_communities),
|
||||
};
|
||||
|
||||
static int cdf_pinctrl_probe(struct platform_device *pdev)
|
||||
{
|
||||
return intel_pinctrl_probe(pdev, &cdf_soc_data);
|
||||
}
|
||||
|
||||
static INTEL_PINCTRL_PM_OPS(cdf_pinctrl_pm_ops);
|
||||
|
||||
static const struct acpi_device_id cdf_pinctrl_acpi_match[] = {
|
||||
{ "INTC3001" },
|
||||
{ "INTC3001", (kernel_ulong_t)&cdf_soc_data },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(acpi, cdf_pinctrl_acpi_match);
|
||||
|
||||
static struct platform_driver cdf_pinctrl_driver = {
|
||||
.probe = cdf_pinctrl_probe,
|
||||
.probe = intel_pinctrl_probe_by_hid,
|
||||
.driver = {
|
||||
.name = "cedarfork-pinctrl",
|
||||
.acpi_match_table = cdf_pinctrl_acpi_match,
|
||||
|
|
Loading…
Reference in New Issue