Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);