Commit 7458eab6 authored by Hiroshi DOYU's avatar Hiroshi DOYU Committed by Greg Kroah-Hartman

memory: tegra{20,30}-mc: Remove empty *_remove()

Remove unnecessary empty functions.
Signed-off-by: default avatarHiroshi DOYU <hdoyu@nvidia.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c313af14
...@@ -241,14 +241,8 @@ static int __devinit tegra20_mc_probe(struct platform_device *pdev) ...@@ -241,14 +241,8 @@ static int __devinit tegra20_mc_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int __devexit tegra20_mc_remove(struct platform_device *pdev)
{
return 0;
}
static struct platform_driver tegra20_mc_driver = { static struct platform_driver tegra20_mc_driver = {
.probe = tegra20_mc_probe, .probe = tegra20_mc_probe,
.remove = __devexit_p(tegra20_mc_remove),
.driver = { .driver = {
.name = DRV_NAME, .name = DRV_NAME,
.owner = THIS_MODULE, .owner = THIS_MODULE,
......
...@@ -365,14 +365,8 @@ static int __devinit tegra30_mc_probe(struct platform_device *pdev) ...@@ -365,14 +365,8 @@ static int __devinit tegra30_mc_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int __devexit tegra30_mc_remove(struct platform_device *pdev)
{
return 0;
}
static struct platform_driver tegra30_mc_driver = { static struct platform_driver tegra30_mc_driver = {
.probe = tegra30_mc_probe, .probe = tegra30_mc_probe,
.remove = __devexit_p(tegra30_mc_remove),
.driver = { .driver = {
.name = DRV_NAME, .name = DRV_NAME,
.owner = THIS_MODULE, .owner = THIS_MODULE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment