X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/82d90cbeb1d2373f69e162396db380a12f096d1b..550b5a8a069a9c83c2b6f8b8733548116bc20cd3:/target/linux/brcm47xx/patches-3.2/197-MIPS-BCM47XX-fix-signature-of-nvram_parse_macaddr.patch diff --git a/target/linux/brcm47xx/patches-3.2/197-MIPS-BCM47XX-fix-signature-of-nvram_parse_macaddr.patch b/target/linux/brcm47xx/patches-3.2/197-MIPS-BCM47XX-fix-signature-of-nvram_parse_macaddr.patch deleted file mode 100644 index ade9bcb75..000000000 --- a/target/linux/brcm47xx/patches-3.2/197-MIPS-BCM47XX-fix-signature-of-nvram_parse_macaddr.patch +++ /dev/null @@ -1,23 +0,0 @@ -From c330338212785092aab7a266f24b52c132775463 Mon Sep 17 00:00:00 2001 -From: Hauke Mehrtens -Date: Sat, 18 Feb 2012 15:00:36 +0100 -Subject: [PATCH 197/202] MIPS: BCM47XX: fix signature of nvram_parse_macaddr - -Explicitly enforce an char array of 6 bytes for the mac address. - -Signed-off-by: Hauke Mehrtens ---- - arch/mips/include/asm/mach-bcm47xx/nvram.h | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - ---- a/arch/mips/include/asm/mach-bcm47xx/nvram.h -+++ b/arch/mips/include/asm/mach-bcm47xx/nvram.h -@@ -37,7 +37,7 @@ struct nvram_header { - - extern int nvram_getenv(char *name, char *val, size_t val_len); - --static inline void nvram_parse_macaddr(char *buf, u8 *macaddr) -+static inline void nvram_parse_macaddr(char *buf, u8 macaddr[6]) - { - if (strchr(buf, ':')) - sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &macaddr[0],