projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c1ef59
)
dma: timb_dma: Fix compiler warning
author
Maxin B. John
<maxin.john@enea.com>
Tue, 19 Feb 2013 20:33:53 +0000
(22:33 +0200)
committer
Vinod Koul
<vinod.koul@intel.com>
Mon, 15 Apr 2013 04:21:16 +0000
(09:51 +0530)
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>
drivers/dma/timb_dma.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/dma/timb_dma.c
b/drivers/dma/timb_dma.c
index 952f823901a6cb5d168ce0b90f2429383ed5bfc3..26107ba6edb33a2fb7d9165aa4ef874bf02f8fbe 100644
(file)
--- 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);