Skip to content

Commit

Permalink
bus: imx-weim: use module_platform_driver()
Browse files Browse the repository at this point in the history
Switch from module_platform_driver_probe() to module_platform_driver().
The former is not suitable for booting with device tree as the driver
will be registered before the device and thus won't be probed again
when the device is present.

Signed-off-by: Sascha Hauer <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
  • Loading branch information
saschahauer authored and Shawn Guo committed Aug 19, 2019
1 parent ffbf23d commit 4a92f07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/bus/imx-weim.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,7 @@ static int __init weim_timing_setup(struct device *dev,
return 0;
}

static int __init weim_parse_dt(struct platform_device *pdev,
void __iomem *base)
static int weim_parse_dt(struct platform_device *pdev, void __iomem *base)
{
const struct of_device_id *of_id = of_match_device(weim_id_table,
&pdev->dev);
Expand Down Expand Up @@ -233,7 +232,7 @@ static int __init weim_parse_dt(struct platform_device *pdev,
return ret;
}

static int __init weim_probe(struct platform_device *pdev)
static int weim_probe(struct platform_device *pdev)
{
struct resource *res;
struct clk *clk;
Expand Down Expand Up @@ -270,8 +269,9 @@ static struct platform_driver weim_driver = {
.name = "imx-weim",
.of_match_table = weim_id_table,
},
.probe = weim_probe,
};
module_platform_driver_probe(weim_driver, weim_probe);
module_platform_driver(weim_driver);

MODULE_AUTHOR("Freescale Semiconductor Inc.");
MODULE_DESCRIPTION("i.MX EIM Controller Driver");
Expand Down

0 comments on commit 4a92f07

Please sign in to comment.