From: Cédric Le Goater Date: Fri, 17 Dec 2021 16:57:17 +0000 (+0100) Subject: ppc/ppc405: Fix bi_pci_enetaddr2 field in U-Boot board information X-Git-Tag: v7.0.0-rc0~124^2~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e0caa8e64de2c62dfa00afc176e2dd2b3afe7f19;p=thirdparty%2Fqemu.git ppc/ppc405: Fix bi_pci_enetaddr2 field in U-Boot board information The board information for the 405EP first appeared in commit 04f20795ac81 ("Move PowerPC 405 specific definitions into a separate file ...") An Ethernet address is a 6 byte number. Fix that. Signed-off-by: Cédric Le Goater Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20211206103712.1866296-14-clg@kaod.org> Signed-off-by: Cédric Le Goater --- diff --git a/hw/ppc/ppc405.h b/hw/ppc/ppc405.h index 6fb8b41bbc7..83f156f585c 100644 --- a/hw/ppc/ppc405.h +++ b/hw/ppc/ppc405.h @@ -57,7 +57,7 @@ struct ppc4xx_bd_info_t { uint32_t bi_plb_busfreq; uint32_t bi_pci_busfreq; uint8_t bi_pci_enetaddr[6]; - uint32_t bi_pci_enetaddr2[6]; + uint8_t bi_pci_enetaddr2[6]; /* PPC405EP specific */ uint32_t bi_opbfreq; uint32_t bi_iic_fast[2]; };