aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/amba/tegra-ahb.c
diff options
context:
space:
mode:
authorhdoyu@nvidia.com <hdoyu@nvidia.com>2012-05-14 02:21:18 -0400
committerStephen Warren <swarren@nvidia.com>2012-06-11 13:48:40 -0400
commitdec195dc41bd678a5626cca5d6c14ee338b5df77 (patch)
treebf9275702d3e34f6fac30248e1946d49cc5e32f3 /drivers/amba/tegra-ahb.c
parentcfaf025112d3856637ff34a767ef785ef5cf2ca9 (diff)
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/tegra-ahb.c')
-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)
264 return 0; 264 return 0;
265} 265}
266 266
267static int __devexit tegra_ahb_remove(struct platform_device *pdev)
268{
269 return 0;
270}
271
272static const struct of_device_id tegra_ahb_of_match[] __devinitconst = { 267static const struct of_device_id tegra_ahb_of_match[] __devinitconst = {
273 { .compatible = "nvidia,tegra30-ahb", }, 268 { .compatible = "nvidia,tegra30-ahb", },
274 { .compatible = "nvidia,tegra20-ahb", }, 269 { .compatible = "nvidia,tegra20-ahb", },
@@ -277,7 +272,6 @@ static const struct of_device_id tegra_ahb_of_match[] __devinitconst = {
277 272
278static struct platform_driver tegra_ahb_driver = { 273static struct platform_driver tegra_ahb_driver = {
279 .probe = tegra_ahb_probe, 274 .probe = tegra_ahb_probe,
280 .remove = __devexit_p(tegra_ahb_remove),
281 .driver = { 275 .driver = {
282 .name = DRV_NAME, 276 .name = DRV_NAME,
283 .owner = THIS_MODULE, 277 .owner = THIS_MODULE,