Skip to content

Commit

Permalink
dma: timb_dma: Fix compiler warning
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Maxin B. John authored and Vinod Koul committed Apr 15, 2013
1 parent 5c1ef59 commit 234846d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dma/timb_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 234846d

Please sign in to comment.