diff options
author | Mark Brown <broonie@linaro.org> | 2014-08-27 11:55:53 +0100 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-08-28 12:43:39 +0530 |
commit | e34b731faa7d12d3681187968ef899747e4feb55 (patch) | |
tree | b5357b97155f7f0a800ad1e2bff90a6568416b9d /drivers/dma | |
parent | b19f40b8bf87bfc32b91260a90a7fa2cdebcd9bb (diff) | |
download | linux-e34b731faa7d12d3681187968ef899747e4feb55.tar.bz2 |
dma: imx-sdma: Remove spurious __init annotation on sdma_probe()
We can't annotate probe functions as __init since binding can occur at
any time, not just during kernel init.
Signed-off-by: Mark Brown <broonie@linaro.org>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/imx-sdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c index c615e88c118a..52ce1d21154c 100644 --- a/drivers/dma/imx-sdma.c +++ b/drivers/dma/imx-sdma.c @@ -1448,7 +1448,7 @@ static struct dma_chan *sdma_xlate(struct of_phandle_args *dma_spec, return dma_request_channel(mask, sdma_filter_fn, &data); } -static int __init sdma_probe(struct platform_device *pdev) +static int sdma_probe(struct platform_device *pdev) { const struct of_device_id *of_id = of_match_device(sdma_dt_ids, &pdev->dev); |