diff options
author | Maxin B. John <maxin.john@enea.com> | 2013-02-19 20:33:53 (GMT) |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-04-15 04:21:16 (GMT) |
commit | 234846d4c8342a5adeb9f70fc0bca606e32c8d2e (patch) | |
tree | 575073b6b0f4b8dc58ef1d034e2ab3210f692efc | |
parent | 5c1ef59168c485318e40ba485c1eba57d81d0faa (diff) | |
download | linux-234846d4c8342a5adeb9f70fc0bca606e32c8d2e.tar.xz |
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>
-rw-r--r-- | drivers/dma/timb_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/timb_dma.c b/drivers/dma/timb_dma.c index 952f823..26107ba 100644 --- a/drivers/dma/timb_dma.c +++ b/drivers/dma/timb_dma.c @@ -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); |