diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-06-28 16:29:19 -0600 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-06-29 17:22:08 -0600 |
commit | 2553dcc6e603e3833990bd3a29bee98d1dbdf251 (patch) | |
tree | 4628d52ffecc40168e03f42e2e813a432587860c /arch/arm/mach-tegra/board-dt-tegra20.c | |
parent | bd976e0307fbb3c715df944ded6b70a9fa8d6bb1 (diff) | |
download | linux-2553dcc6e603e3833990bd3a29bee98d1dbdf251.tar.bz2 |
ARM: tegra: use of_default_bus_match_table
of_default_bus_match_table is a table of default bus types supported by
of_platform_populate(). Since Tegra has no need to support any specific
custom list of bus types, modify the DT board files to use this default
list.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/board-dt-tegra20.c')
-rw-r--r-- | arch/arm/mach-tegra/board-dt-tegra20.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/arm/mach-tegra/board-dt-tegra20.c b/arch/arm/mach-tegra/board-dt-tegra20.c index 1b43c3350e3c..d0de9c1192f7 100644 --- a/arch/arm/mach-tegra/board-dt-tegra20.c +++ b/arch/arm/mach-tegra/board-dt-tegra20.c @@ -82,11 +82,6 @@ static __initdata struct tegra_clk_init_table tegra_dt_clk_init_table[] = { { NULL, NULL, 0, 0}, }; -static struct of_device_id tegra_dt_match_table[] __initdata = { - { .compatible = "simple-bus", }, - {} -}; - static void __init tegra_dt_init(void) { tegra_clk_init_from_table(tegra_dt_clk_init_table); @@ -95,7 +90,7 @@ static void __init tegra_dt_init(void) * Finished with the static registrations now; fill in the missing * devices */ - of_platform_populate(NULL, tegra_dt_match_table, + of_platform_populate(NULL, of_default_bus_match_table, tegra20_auxdata_lookup, NULL); } |