diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:57 -0700 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2020-01-24 23:06:48 +0530 |
commit | 39fdefa6cf302ad2dbc30c905f03e5480b380ec3 (patch) | |
tree | cb91c4dd6023aba0b5a1bd46bc49befe5a7c40ce /arch | |
parent | cc3ac11d81446c31a5bedd31887618b9a70439dd (diff) | |
download | u-boot-39fdefa6cf302ad2dbc30c905f03e5480b380ec3.zip u-boot-39fdefa6cf302ad2dbc30c905f03e5480b380ec3.tar.gz u-boot-39fdefa6cf302ad2dbc30c905f03e5480b380ec3.tar.bz2 |
common: Move upmconfig() to ppc.h
This file is only used by PowerPC so move it to an arch-specific header
file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/include/asm/ppc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/ppc.h b/arch/powerpc/include/asm/ppc.h index 5765f6b..055364c 100644 --- a/arch/powerpc/include/asm/ppc.h +++ b/arch/powerpc/include/asm/ppc.h @@ -121,6 +121,7 @@ void print_reginfo(void); void interrupt_init_cpu(unsigned *); void timer_interrupt_cpu(struct pt_regs *); unsigned long search_exception_table(unsigned long addr); +void upmconfig(uint upm, uint *table, uint size); #endif /* !__ASSEMBLY__ */ |