Commit 234846d4 authored by Maxin B. John's avatar Maxin B. John Committed by Vinod Koul

dma: timb_dma: Fix compiler warning

Fix this compiler warning:
warning: 'td_remove' defined but not used [-Wunused-function]
Signed-off-by: default avatarMaxin B. John <maxin.john@enea.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 5c1ef591
......@@ -823,7 +823,7 @@ static struct platform_driver td_driver = {
.owner = THIS_MODULE,
},
.probe = td_probe,
.remove = __exit_p(td_remove),
.remove = td_remove,
};
module_platform_driver(td_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment