diff options
| author | Allen Martin <amartin@nvidia.com> | 2012-08-31 08:30:00 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 14:58:21 +0200 | 
| commit | 00a2749d7be5b0e6cb6435187ec8fea600b44627 (patch) | |
| tree | 3d3107a9b369a09ba5c40abff80d23788939b48d /drivers/gpio/tegra_gpio.c | |
| parent | 0d04f34a357d004364b58159b64aad354e65137e (diff) | |
| download | olio-uboot-2014.01-00a2749d7be5b0e6cb6435187ec8fea600b44627.tar.xz olio-uboot-2014.01-00a2749d7be5b0e6cb6435187ec8fea600b44627.zip | |
tegra20: rename tegra2 -> tegra20
This is make naming consistent with the kernel and devicetree and in
preparation of pulling out the common tegra20 code.
Signed-off-by: Allen Martin <amartin@nvidia.com>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Tested-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'drivers/gpio/tegra_gpio.c')
| -rw-r--r-- | drivers/gpio/tegra_gpio.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/drivers/gpio/tegra_gpio.c b/drivers/gpio/tegra_gpio.c index 60ec6e3d7..8cfcf8283 100644 --- a/drivers/gpio/tegra_gpio.c +++ b/drivers/gpio/tegra_gpio.c @@ -1,5 +1,5 @@  /* - * NVIDIA Tegra2 GPIO handling. + * NVIDIA Tegra20 GPIO handling.   *  (C) Copyright 2010-2012   *  NVIDIA Corporation <www.nvidia.com>   * @@ -30,14 +30,14 @@  #include <common.h>  #include <asm/io.h>  #include <asm/bitops.h> -#include <asm/arch/tegra2.h> +#include <asm/arch/tegra20.h>  #include <asm/gpio.h>  enum { -	TEGRA2_CMD_INFO, -	TEGRA2_CMD_PORT, -	TEGRA2_CMD_OUTPUT, -	TEGRA2_CMD_INPUT, +	TEGRA20_CMD_INFO, +	TEGRA20_CMD_PORT, +	TEGRA20_CMD_OUTPUT, +	TEGRA20_CMD_INPUT,  };  static struct gpio_names { |