mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
powerpc: remove 4xx support
There was for long time no activity in the 4xx area. We need to go further and convert to Kconfig, but it turned out, nobody is interested anymore in 4xx, so remove it. Signed-off-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
@ -7,9 +7,7 @@
|
||||
|
||||
#include <common.h>
|
||||
#include <command.h>
|
||||
#if defined (CONFIG_4xx)
|
||||
extern void ppc4xx_reginfo(void);
|
||||
#elif defined (CONFIG_MPC86xx)
|
||||
#if defined(CONFIG_MPC86xx)
|
||||
extern void mpc86xx_reginfo(void);
|
||||
#elif defined(CONFIG_MPC85xx)
|
||||
extern void mpc85xx_reginfo(void);
|
||||
@ -18,9 +16,7 @@ extern void mpc85xx_reginfo(void);
|
||||
static int do_reginfo(cmd_tbl_t *cmdtp, int flag, int argc,
|
||||
char * const argv[])
|
||||
{
|
||||
#if defined (CONFIG_4xx)
|
||||
ppc4xx_reginfo();
|
||||
#elif defined(CONFIG_MPC86xx)
|
||||
#if defined(CONFIG_MPC86xx)
|
||||
mpc86xx_reginfo();
|
||||
|
||||
#elif defined(CONFIG_MPC85xx)
|
||||
|
Reference in New Issue
Block a user