diff options
| author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2008-02-05 13:30:43 +0900 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-02-14 23:46:46 +0100 | 
| commit | f6921e3dc331293c873ec4d109fd5517a42a90b3 (patch) | |
| tree | db783f18038e45d5687a5b1fc4d8b1ecb67a4bb4 | |
| parent | 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2 (diff) | |
| download | olio-uboot-2014.01-f6921e3dc331293c873ec4d109fd5517a42a90b3.tar.xz olio-uboot-2014.01-f6921e3dc331293c873ec4d109fd5517a42a90b3.zip | |
sh: Fix register address of SH7722
The address of SH7722 is wrong by old document.
This patch fixes this problem.
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
| -rw-r--r-- | include/asm-sh/cpu_sh7722.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/include/asm-sh/cpu_sh7722.h b/include/asm-sh/cpu_sh7722.h index 13d4a77ed..0975b78e9 100644 --- a/include/asm-sh/cpu_sh7722.h +++ b/include/asm-sh/cpu_sh7722.h @@ -1282,12 +1282,12 @@  #define HIZCRA      0xA4050158  #define HIZCRB      0xA405015A  #define HIZCRC      0xA405015C -#define MSELCR      0xA405015C -#define PULCR       0xA405015E -#define DRVCR       0xA4050180 -#define SBSCR       0xA4050182 -#define AUDTHCR     0xA4050184 -#define PSELF       0xA4050186 +#define HIZCRC		0xA405015C +#define MSELCRA		0xA4050180 +#define MSELCRB		0xA4050182 +#define PULCR		0xA4050184 +#define SBSCR		0xA4050186 +#define DRVCR		0xA405018A  /*	I/O Port	*/  #define PADR        0xA4050120 |