Skip to content

Commit

Permalink
drivers: bus: imx-weim: use module_platform_driver_probe()
Browse files Browse the repository at this point in the history
Driver should be called only once at startup, so code converted
to using module_platform_driver_probe().

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
  • Loading branch information
Alexander Shiyan authored and Shawn Guo committed Aug 16, 2013
1 parent b2d1fb7 commit 29e5497
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/bus/imx-weim.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ MODULE_DEVICE_TABLE(of, weim_id_table);
#define CS_REG_RANGE 0x18

/* Parse and set the timing for this device. */
static int weim_timing_setup(struct device_node *np, void __iomem *base)
static int __init weim_timing_setup(struct device_node *np, void __iomem *base)
{
u32 value[CS_TIMING_LEN];
u32 cs_idx;
Expand All @@ -49,7 +49,8 @@ static int weim_timing_setup(struct device_node *np, void __iomem *base)
return 0;
}

static int weim_parse_dt(struct platform_device *pdev, void __iomem *base)
static int __init weim_parse_dt(struct platform_device *pdev,
void __iomem *base)
{
struct device_node *child;
int ret;
Expand All @@ -73,7 +74,7 @@ static int weim_parse_dt(struct platform_device *pdev, void __iomem *base)
return ret;
}

static int weim_probe(struct platform_device *pdev)
static int __init weim_probe(struct platform_device *pdev)
{
struct resource *res;
struct clk *clk;
Expand Down Expand Up @@ -110,10 +111,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");
MODULE_LICENSE("GPL");

0 comments on commit 29e5497

Please sign in to comment.