diff options
author | Tom Rini <trini@ti.com> | 2012-07-24 16:31:26 -0700 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 14:58:12 +0200 |
commit | 5ac3b7ada1573a8d0a6c17ce4b86ed56f77f637a (patch) | |
tree | 47e96d9ef925392e7102c89419293359a74073bf /arch/arm/include/asm | |
parent | ff7ec0f945d16dcd8fcb4b5347dca2770ac6cea4 (diff) | |
download | u-boot-imx-5ac3b7ada1573a8d0a6c17ce4b86ed56f77f637a.zip u-boot-imx-5ac3b7ada1573a8d0a6c17ce4b86ed56f77f637a.tar.gz u-boot-imx-5ac3b7ada1573a8d0a6c17ce4b86ed56f77f637a.tar.bz2 |
am33xx: Rework config_io_ctrl slightly
This function sets a number of related registers to the same value (the
registers in question all have the same field descriptions and are
related in operation). Rather than defining a struct and setting the
value repeatedly, just pass in the value.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-am33xx/ddr_defs.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/arch/arm/include/asm/arch-am33xx/ddr_defs.h b/arch/arm/include/asm/arch-am33xx/ddr_defs.h index 7806e1b..ebd3077 100644 --- a/arch/arm/include/asm/arch-am33xx/ddr_defs.h +++ b/arch/arm/include/asm/arch-am33xx/ddr_defs.h @@ -174,20 +174,9 @@ struct ddr_cmdtctrl { }; /** - * Encapsulates DDR CMD & DATA io control registers. - */ -struct ddr_ioctrl { - unsigned long cmd1ctl; - unsigned long cmd2ctl; - unsigned long cmd3ctl; - unsigned long data1ctl; - unsigned long data2ctl; -}; - -/** * Configure DDR io control registers */ -void config_io_ctrl(struct ddr_ioctrl *ioctrl); +void config_io_ctrl(unsigned long val); struct ddr_ctrl { unsigned int ddrioctrl; |