
On Jun 16, 2008, at 3:55 PM, Kim Phillips wrote:
Delete the crypto node if not on an E-processor. If on 8360 or 834x family, check rev and up-rev crypto node (to SEC rev. 2.4 property values) if on an 'EA' processor, e.g. MPC8349EA.
Signed-off-by: Kim Phillips kim.phillips@freescale.com
diff from v3: prepended "Delete the" to the patch commit message. mumble. Thanks gvb.
common/fdt_support.c | 87 ++++++++++++++++++++++++++++++++++ +++++++++ cpu/mpc83xx/fdt.c | 18 +++++++++ cpu/mpc85xx/fdt.c | 5 ++ include/asm-ppc/processor.h | 9 ++++ include/fdt_support.h | 6 +++ include/mpc83xx.h | 7 +++- 6 files changed, 131 insertions(+), 1 deletions(-)
Can you fixup cpu/mpc85xx/cpu.c:
if (svr & 0x80000) puts("E");
to be if (IS_E_PROCESSOR(svr) puts("E");
- k