summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--board/keymile/common/ivm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/keymile/common/ivm.c b/board/keymile/common/ivm.c
index d0cb0d227f..bcf3aed97e 100644
--- a/board/keymile/common/ivm.c
+++ b/board/keymile/common/ivm.c
@@ -206,8 +206,8 @@ static int ivm_analyze_block2(unsigned char *buf, int len)
unsigned char valbuf[CONFIG_SYS_IVM_EEPROM_PAGE_LEN];
unsigned long count;
- /* IVM_MacAddress */
- sprintf((char *)valbuf, "%pM", buf);
+ /* IVM_MAC Adress begins at offset 1 */
+ sprintf((char *)valbuf, "%pM", buf + 1);
ivm_set_value("IVM_MacAddress", (char *)valbuf);
/* if an offset is defined, add it */
#if defined(CONFIG_PIGGY_MAC_ADRESS_OFFSET)
OpenPOWER on IntegriCloud