aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/timb_dma.c
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@enea.com>2013-02-19 15:33:53 -0500
committerVinod Koul <vinod.koul@intel.com>2013-04-15 00:21:16 -0400
commit234846d4c8342a5adeb9f70fc0bca606e32c8d2e (patch)
tree575073b6b0f4b8dc58ef1d034e2ab3210f692efc /drivers/dma/timb_dma.c
parent5c1ef59168c485318e40ba485c1eba57d81d0faa (diff)
dma: timb_dma: Fix compiler warning
Fix this compiler warning: warning: 'td_remove' defined but not used [-Wunused-function] Signed-off-by: Maxin B. John <maxin.john@enea.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/timb_dma.c')
-rw-r--r--drivers/dma/timb_dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/timb_dma.c b/drivers/dma/timb_dma.c
index 952f823901a6..26107ba6edb3 100644
--- a/drivers/dma/timb_dma.c
+++ b/drivers/dma/timb_dma.c
@@ -823,7 +823,7 @@ static struct platform_driver td_driver = {
823 .owner = THIS_MODULE, 823 .owner = THIS_MODULE,
824 }, 824 },
825 .probe = td_probe, 825 .probe = td_probe,
826 .remove = __exit_p(td_remove), 826 .remove = td_remove,
827}; 827};
828 828
829module_platform_driver(td_driver); 829module_platform_driver(td_driver);