diff options
author | Olof Johansson <olof@lixom.net> | 2011-02-19 21:01:46 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2011-02-22 17:28:12 -0800 |
commit | ec243a071d32af0350449c220d1de7c437088879 (patch) | |
tree | 15635ee0e654b964b61be034a1317ec7a97da82e /arch/arm/mach-tegra | |
parent | 85940b4a1761aa5ab8d0ac1557756953788af155 (diff) | |
download | op-kernel-dev-ec243a071d32af0350449c220d1de7c437088879.zip op-kernel-dev-ec243a071d32af0350449c220d1de7c437088879.tar.gz |
ARM: tegra: remove stale nvidia atag handler
Remove dead atag handling code for nvidia-specific tags.
Signed-off-by: Olof Johansson <olof@lixom.net>
Acked-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r-- | arch/arm/mach-tegra/board-harmony.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/arm/mach-tegra/board-harmony.c b/arch/arm/mach-tegra/board-harmony.c index 368ddff..f4c41c0 100644 --- a/arch/arm/mach-tegra/board-harmony.c +++ b/arch/arm/mach-tegra/board-harmony.c @@ -35,31 +35,6 @@ #include "board-harmony.h" #include "clock.h" -/* NVidia bootloader tags */ -#define ATAG_NVIDIA 0x41000801 - -#define ATAG_NVIDIA_RM 0x1 -#define ATAG_NVIDIA_DISPLAY 0x2 -#define ATAG_NVIDIA_FRAMEBUFFER 0x3 -#define ATAG_NVIDIA_CHIPSHMOO 0x4 -#define ATAG_NVIDIA_CHIPSHMOOPHYS 0x5 -#define ATAG_NVIDIA_PRESERVED_MEM_0 0x10000 -#define ATAG_NVIDIA_PRESERVED_MEM_N 2 -#define ATAG_NVIDIA_FORCE_32 0x7fffffff - -struct tag_tegra { - __u32 bootarg_key; - __u32 bootarg_len; - char bootarg[1]; -}; - -static int __init parse_tag_nvidia(const struct tag *tag) -{ - - return 0; -} -__tagtable(ATAG_NVIDIA, parse_tag_nvidia); - static struct plat_serial8250_port debug_uart_platform_data[] = { { .membase = IO_ADDRESS(TEGRA_UARTD_BASE), |