diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2018-03-16 17:20:39 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-04-06 16:30:37 -0400 |
commit | 0ebb5388b4aff65934730cc187826919c8f33a25 (patch) | |
tree | befc80397a2018c44a45f9936aa3a62e9667d95f /arch/powerpc/cpu/mpc8xx/reginfo.c | |
parent | 14119901fd4a2577f93413a665cc79705f7675fd (diff) |
powerpc: mpc8xx: remove get_immr() argument
get_immr() is always called with 0 as an argument, so it is useless.
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Diffstat (limited to 'arch/powerpc/cpu/mpc8xx/reginfo.c')
-rw-r--r-- | arch/powerpc/cpu/mpc8xx/reginfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc8xx/reginfo.c b/arch/powerpc/cpu/mpc8xx/reginfo.c index 277d2753b2..d48ea265f8 100644 --- a/arch/powerpc/cpu/mpc8xx/reginfo.c +++ b/arch/powerpc/cpu/mpc8xx/reginfo.c @@ -22,7 +22,7 @@ void print_reginfo(void) */ printf("\nSystem Configuration registers\n" - "\tIMMR\t0x%08X\n", get_immr(0)); + "\tIMMR\t0x%08X\n", get_immr()); printf("\tSIUMCR\t0x%08X", in_be32(&sysconf->sc_siumcr)); printf("\tSYPCR\t0x%08X\n", in_be32(&sysconf->sc_sypcr)); |