diff options
Diffstat (limited to 'arch/powerpc/include/asm/8xx_immap.h')
| -rw-r--r-- | arch/powerpc/include/asm/8xx_immap.h | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/arch/powerpc/include/asm/8xx_immap.h b/arch/powerpc/include/asm/8xx_immap.h index 40679cb2b..01129ed4f 100644 --- a/arch/powerpc/include/asm/8xx_immap.h +++ b/arch/powerpc/include/asm/8xx_immap.h @@ -485,7 +485,12 @@ typedef struct comm_proc {  	 * Some processors don't have all of it populated.  	 */  	u_char	cp_dpmem[0x1C00];	/* BD / Data / ucode */ -	u_char	cp_dparam[0x400];	/* Parameter RAM */ + +	/* Parameter RAM */ +	union { +		u_char	cp_dparam[0x400]; +		u16	cp_dparam16[0x200]; +	};  } cpm8xx_t;  /* Internal memory map. |