aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/amba
diff options
context:
space:
mode:
authorhdoyu@nvidia.com <hdoyu@nvidia.com>2012-05-14 06:21:18 +0000
committerStephen Warren <swarren@nvidia.com>2012-06-11 11:48:40 -0600
commitdec195dc41bd678a5626cca5d6c14ee338b5df77 (patch)
treebf9275702d3e34f6fac30248e1946d49cc5e32f3 /drivers/amba
parentLinux 3.5-rc2 (diff)
downloadlinux-dev-dec195dc41bd678a5626cca5d6c14ee338b5df77.tar.xz
linux-dev-dec195dc41bd678a5626cca5d6c14ee338b5df77.zip
amba: tegra-ahb: Remove empty *_remove()
Remove unnecessary empty function. Signed-off-by: Hiroshi DOYU <hdoyu@nvidia.com> Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'drivers/amba')
-rw-r--r--drivers/amba/tegra-ahb.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/amba/tegra-ahb.c b/drivers/amba/tegra-ahb.c
index aa0b1f160528..0b6f0b28a487 100644
--- a/drivers/amba/tegra-ahb.c
+++ b/drivers/amba/tegra-ahb.c
@@ -264,11 +264,6 @@ static int __devinit tegra_ahb_probe(struct platform_device *pdev)
return 0;
}
-static int __devexit tegra_ahb_remove(struct platform_device *pdev)
-{
- return 0;
-}
-
static const struct of_device_id tegra_ahb_of_match[] __devinitconst = {
{ .compatible = "nvidia,tegra30-ahb", },
{ .compatible = "nvidia,tegra20-ahb", },
@@ -277,7 +272,6 @@ static const struct of_device_id tegra_ahb_of_match[] __devinitconst = {
static struct platform_driver tegra_ahb_driver = {
.probe = tegra_ahb_probe,
- .remove = __devexit_p(tegra_ahb_remove),
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,