From: Jan-Christoph Tebbe Date: Mon, 16 Mar 2020 16:51:51 +0000 (+0100) Subject: mach-snapdragon: Fix overwriting last digit of serial number X-Git-Tag: v2020.04-rc5~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=740370282e0caa9fab1c5865fe9b9a58ac008c5f;p=oweals%2Fu-boot.git mach-snapdragon: Fix overwriting last digit of serial number When generating the MAC address based on the boards serial number the last digit was overwritten with the null termination. That way boards with serial numbers close to each other would use the same MAC address. Signed-off-by: Jan-Christoph Tebbe --- diff --git a/arch/arm/mach-snapdragon/misc.c b/arch/arm/mach-snapdragon/misc.c index f6c87866c0..aaa561c2c6 100644 --- a/arch/arm/mach-snapdragon/misc.c +++ b/arch/arm/mach-snapdragon/misc.c @@ -41,7 +41,7 @@ void msm_generate_mac_addr(u8 *mac) int i; char sn[9]; - snprintf(sn, 8, "%08x", msm_board_serial()); + snprintf(sn, 9, "%08x", msm_board_serial()); /* fill in the mac with serialno, use locally adminstrated pool */ mac[0] = 0x02;