From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Hershberger Date: Tue, 7 Jul 2015 23:04:12 -0500 Subject: [U-Boot] [PATCH 01/20] dm: net: Support usbethaddr environment variable In-Reply-To: <1436324032-17931-2-git-send-email-sjg@chromium.org> References: <1436324032-17931-1-git-send-email-sjg@chromium.org> <1436324032-17931-2-git-send-email-sjg@chromium.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Simon, On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote: > For USB Ethernet devices we need to use the usbethaddr environment variable > (instead of ethaddr) the Ethernet hardware address. Add this to the uclass > so that it happens automatically. I have always thought that this approach of having a separate prefix for usbethaddr was a smelly hack. Are we sure we want to propagate it here? Can we not just use dev->seq? It should already be unique in the DM, right? I was really looking forward to that all going away. > > Signed-off-by: Simon Glass > ---