summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorThomas Herzmann <thomas.herzmann@keymile.com>2012-05-04 10:55:53 +0200
committerKim Phillips <kim.phillips@freescale.com>2012-06-15 17:12:40 -0500
commitd8f87f6c4ba22ecab84371206cac2e17913eba60 (patch)
tree37e51845d6dbee9fba23b8e5bce62efc5b46ff2d /board
parentc67d2ff2175de53673d131a808f92b1ad186ff1e (diff)
downloadblackbird-obmc-uboot-d8f87f6c4ba22ecab84371206cac2e17913eba60.tar.gz
blackbird-obmc-uboot-d8f87f6c4ba22ecab84371206cac2e17913eba60.zip
km/common: fixed error in ethaddr (1-byte-shift)
The MAC address begins at offset 1. Signed-off-by: Thomas Herzmann <thomas.herzmann@keymile.com> Signed-off-by: Holger Brunck <holger.brunck@keymile.com> Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board')
-rw-r--r--board/keymile/common/ivm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/keymile/common/ivm.c b/board/keymile/common/ivm.c
index 70d78457f2..9bc3c21c9c 100644
--- a/board/keymile/common/ivm.c
+++ b/board/keymile/common/ivm.c
@@ -218,7 +218,7 @@ static int ivm_analyze_block2(unsigned char *buf, int len)
buf[4] = (val >> 16) & 0xff;
buf[5] = (val >> 8) & 0xff;
buf[6] = val & 0xff;
- sprintf((char *)valbuf, "%pM", buf);
+ sprintf((char *)valbuf, "%pM", buf + 1);
}
#endif
#ifdef MACH_TYPE_KM_KIRKWOOD
OpenPOWER on IntegriCloud