[U-Boot] [PATCH v2] net: mvpp2: support setting hardware addresses from ethernet core

2019-07-30 Thread Matt Pelland
mvpp2 already has support for setting MAC addresses but this functionality was not exposed to the ethernet core. This commit exposes this functionality so that MAC address assignments stored in U-Boot's environment are correctly applied before Linux boots. Signed-off-by: Matt Pelland --- Ch

Re: [U-Boot] [PATCH] net: mvpp2: support setting hardware addresses from ethernet core

2019-07-30 Thread Matt Pelland
> On Sat, Jun 1, 2019 at 1:39 PM Joe Hershberger wrote: > > > > On Wed, May 8, 2019 at 2:36 PM Matt Pelland wrote: > > > > > > mvpp2 already has support for setting MAC addresses but this > > > functionality was not exposed to the ethernet core. This

[U-Boot] [PATCH] net: mvpp2: support setting hardware addresses from ethernet core

2019-05-08 Thread Matt Pelland
mvpp2 already has support for setting MAC addresses but this functionality was not exposed to the ethernet core. This commit exposes this functionality so that MAC address assignments stored in U-Boot's environment are correctly applied before Linux boots. Signed-off-by: Matt Pe

[U-Boot] [PATCH v2] mmc: mv_sdhci: zero out sdhci_host structure

2018-04-16 Thread Matt Pelland
The mv_sdhci driver was not zeroing the sdhci_host structure it allocates causing random access violations in parts of the mmc core where the "ops" member pointers are checked and called if not NULL. Signed-off-by: Matt Pelland --- drivers/mmc/mv_sdhci.c | 2 +- 1 file changed, 1

[U-Boot] [PATCH] mmc: mv_sdhci: zero out sdhci_host structure

2018-03-27 Thread Matt Pelland
The mv_sdhci driver was not zeroing the sdhci_host structure it allocates causing random access violations in parts of the mmc core where the "ops" member pointers are checked and called if not NULL. Signed-off-by: Matt Pelland --- drivers/mmc/mv_sdhci.c | 2 ++ 1 file changed, 2

[U-Boot] [PATCH] net: mvneta: support setting hardware address

2018-03-27 Thread Matt Pelland
are not used before loading Linux. Signed-off-by: Matt Pelland --- drivers/net/mvneta.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/drivers/net/mvneta.c b/drivers/net/mvneta.c index 83e3153768..fdff772178 100644 --- a/drivers/net/mvneta.c +++ b/drivers/net/mvneta.c @@ -890,6