Skip to content

Commit

Permalink
memory: tegra{20,30}-mc: Remove empty *_remove()
Browse files Browse the repository at this point in the history
Remove unnecessary empty functions.

Signed-off-by: Hiroshi DOYU <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
hdoyu authored and gregkh committed May 14, 2012
1 parent c313af1 commit 7458eab
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions drivers/memory/tegra20-mc.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,8 @@ static int __devinit tegra20_mc_probe(struct platform_device *pdev)
return 0;
}

static int __devexit tegra20_mc_remove(struct platform_device *pdev)
{
return 0;
}

static struct platform_driver tegra20_mc_driver = {
.probe = tegra20_mc_probe,
.remove = __devexit_p(tegra20_mc_remove),
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
Expand Down
6 changes: 0 additions & 6 deletions drivers/memory/tegra30-mc.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,14 +365,8 @@ static int __devinit tegra30_mc_probe(struct platform_device *pdev)
return 0;
}

static int __devexit tegra30_mc_remove(struct platform_device *pdev)
{
return 0;
}

static struct platform_driver tegra30_mc_driver = {
.probe = tegra30_mc_probe,
.remove = __devexit_p(tegra30_mc_remove),
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
Expand Down

0 comments on commit 7458eab

Please sign in to comment.