diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-07-06 16:09:21 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2012-07-06 16:09:21 -0400 |
commit | 8e31cbc66b4c92fd1b70cbacc4917df322345f42 (patch) | |
tree | 52507fb16023061032deba8158c485dade952446 /drivers | |
parent | 0508c8e7d47bb64a13cb5d080c4520fe90880b18 (diff) | |
parent | 702b0e4f2f2782962aab7d9a0a40ad68770bb1f6 (diff) |
Merge branch 'for-3.6/cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra into next/cleanup
From Stephen Warren <swarren@wwwdotorg.org>:
This branch contains various minor cleanups, such as binding and .dts
renames, DT content cleanup, SDHCI support-8bit property usage cleanup, and
removal of some unnecessary sleep code.
* 'for-3.6/cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra:
ARM: dt: tegra: rename board files to match SoC
ASoC: tegra: simplify Kconfig dependencies
ARM: dt: tegra: remove legacy support-8bit property
mmc: tegra: use bus-width property instead of support-8bit
ARM: tegra: Remove flow controller programming
dt: name all Tegra binding docs consistently
ARM: tegra20: Rename "emc" to "memory-controller"
ARM: dt: tegra20: Rename "emc" to "memory-controller"
ARM: tegra{20,30}: Rename "mc" to "memory-controller"
ARM: dt: tegra{20,30}.dtsi: Rename "mc" to "memory-controller"
amba: tegra-ahb: Remove empty *_remove()
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/amba/tegra-ahb.c | 6 | ||||
-rw-r--r-- | drivers/mmc/host/sdhci-tegra.c | 5 |
2 files changed, 4 insertions, 7 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 | ||
267 | static int __devexit tegra_ahb_remove(struct platform_device *pdev) | ||
268 | { | ||
269 | return 0; | ||
270 | } | ||
271 | |||
272 | static const struct of_device_id tegra_ahb_of_match[] __devinitconst = { | 267 | static 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 | ||
278 | static struct platform_driver tegra_ahb_driver = { | 273 | static 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, |
diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c index b38d8a78f6a0..6e5338a071ce 100644 --- a/drivers/mmc/host/sdhci-tegra.c +++ b/drivers/mmc/host/sdhci-tegra.c | |||
@@ -223,6 +223,7 @@ static struct tegra_sdhci_platform_data * __devinit sdhci_tegra_dt_parse_pdata( | |||
223 | { | 223 | { |
224 | struct tegra_sdhci_platform_data *plat; | 224 | struct tegra_sdhci_platform_data *plat; |
225 | struct device_node *np = pdev->dev.of_node; | 225 | struct device_node *np = pdev->dev.of_node; |
226 | u32 bus_width; | ||
226 | 227 | ||
227 | if (!np) | 228 | if (!np) |
228 | return NULL; | 229 | return NULL; |
@@ -236,7 +237,9 @@ static struct tegra_sdhci_platform_data * __devinit sdhci_tegra_dt_parse_pdata( | |||
236 | plat->cd_gpio = of_get_named_gpio(np, "cd-gpios", 0); | 237 | plat->cd_gpio = of_get_named_gpio(np, "cd-gpios", 0); |
237 | plat->wp_gpio = of_get_named_gpio(np, "wp-gpios", 0); | 238 | plat->wp_gpio = of_get_named_gpio(np, "wp-gpios", 0); |
238 | plat->power_gpio = of_get_named_gpio(np, "power-gpios", 0); | 239 | plat->power_gpio = of_get_named_gpio(np, "power-gpios", 0); |
239 | if (of_find_property(np, "support-8bit", NULL)) | 240 | |
241 | if (of_property_read_u32(np, "bus-width", &bus_width) == 0 && | ||
242 | bus_width == 8) | ||
240 | plat->is_8bit = 1; | 243 | plat->is_8bit = 1; |
241 | 244 | ||
242 | return plat; | 245 | return plat; |