diff options
Diffstat (limited to 'include/fdtdec.h')
| -rw-r--r-- | include/fdtdec.h | 16 | 
1 files changed, 10 insertions, 6 deletions
| diff --git a/include/fdtdec.h b/include/fdtdec.h index fab577ed3..0b140752f 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -19,6 +19,8 @@   * MA 02111-1307 USA   */ +#ifndef __fdtdec_h +#define __fdtdec_h  /*   * This file contains convenience functions for decoding useful and @@ -57,12 +59,13 @@ struct fdt_memory {   */  enum fdt_compat_id {  	COMPAT_UNKNOWN, -	COMPAT_NVIDIA_TEGRA20_USB,	/* Tegra2 USB port */ -	COMPAT_NVIDIA_TEGRA20_I2C,	/* Tegra2 i2c */ -	COMPAT_NVIDIA_TEGRA20_DVC,	/* Tegra2 dvc (really just i2c) */ -	COMPAT_NVIDIA_TEGRA20_EMC,	/* Tegra2 memory controller */ -	COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra2 memory timing table */ -	COMPAT_NVIDIA_TEGRA20_KBC,	/* Tegra2 Keyboard */ +	COMPAT_NVIDIA_TEGRA20_USB,	/* Tegra20 USB port */ +	COMPAT_NVIDIA_TEGRA20_I2C,	/* Tegra20 i2c */ +	COMPAT_NVIDIA_TEGRA20_DVC,	/* Tegra20 dvc (really just i2c) */ +	COMPAT_NVIDIA_TEGRA20_EMC,	/* Tegra20 memory controller */ +	COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */ +	COMPAT_NVIDIA_TEGRA20_KBC,	/* Tegra20 Keyboard */ +	COMPAT_NVIDIA_TEGRA20_NAND,	/* Tegra2 NAND controller */  	COMPAT_COUNT,  }; @@ -382,3 +385,4 @@ int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,   */  const u8 *fdtdec_locate_byte_array(const void *blob, int node,  			     const char *prop_name, int count); +#endif |