Skip to content

Commit

Permalink
arm/tegra: Convert pinmux driver to a platform device
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Warren <swarren@nvidia.com>
[olof: switch probe function to __devinit]
Signed-off-by: Olof Johansson <olof@lixom.net>
  • Loading branch information
Stephen Warren authored and Olof Johansson committed Oct 13, 2011
1 parent f62f548 commit 1ebc849
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions arch/arm/mach-tegra/pinmux.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <linux/errno.h>
#include <linux/spinlock.h>
#include <linux/io.h>
#include <linux/platform_device.h>

#include <mach/iomap.h>
#include <mach/pinmux.h>
Expand Down Expand Up @@ -665,6 +666,31 @@ void tegra_pinmux_config_pullupdown_table(const struct tegra_pingroup_config *co
}
}

static int __devinit tegra_pinmux_probe(struct platform_device *pdev)
{
return 0;
}

static struct of_device_id tegra_pinmux_of_match[] __devinitdata = {
{ .compatible = "nvidia,tegra20-pinmux", },
{ },
};

static struct platform_driver tegra_pinmux_driver = {
.driver = {
.name = "tegra-pinmux",
.owner = THIS_MODULE,
.of_match_table = tegra_pinmux_of_match,
},
.probe = tegra_pinmux_probe,
};

static int __init tegra_pinmux_init(void)
{
return platform_driver_register(&tegra_pinmux_driver);
}
postcore_initcall(tegra_pinmux_init);

#ifdef CONFIG_DEBUG_FS

#include <linux/debugfs.h>
Expand Down

0 comments on commit 1ebc849

Please sign in to comment.