diff mbox series

[U-Boot,05/12] board/BuR/common: remove interface Label from summary screen

Message ID 1530884489-28089-6-git-send-email-oe5hpm@oevsv.at
State Accepted
Commit 2930941aee2ceb1452a4a779cdb20df150fc332f
Delegated to: Tom Rini
Headers show
Series Refactor bur board/common code | expand

Commit Message

Hannes Schmelzer July 6, 2018, 1:41 p.m. UTC
This interface names may vary over different products, to consider this
fact we replace the interface label "IF1" and "IF2" on the summary
screen with some more generic wording "MAC1" and "MAC2".

Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>
---

 board/BuR/common/common.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini July 20, 2018, 12:37 p.m. UTC | #1
On Fri, Jul 06, 2018 at 03:41:22PM +0200, Hannes Schmelzer wrote:

> This interface names may vary over different products, to consider this
> fact we replace the interface label "IF1" and "IF2" on the summary
> screen with some more generic wording "MAC1" and "MAC2".
> 
> Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/board/BuR/common/common.c b/board/BuR/common/common.c
index e1ac6c4..1e14a90 100644
--- a/board/BuR/common/common.c
+++ b/board/BuR/common/common.c
@@ -176,8 +176,8 @@  void br_summaryscreen(void)
 {
 	br_summaryscreen_printenv(" - B&R -", "br_orderno", 0, "-\n");
 	br_summaryscreen_printenv(" Serial/Rev :", "br_serial", 0, "\n");
-	br_summaryscreen_printenv(" MAC (IF1)  :", "br_mac1", "ethaddr", "\n");
-	br_summaryscreen_printenv(" MAC (IF2)  :", "br_mac2", 0, "\n");
+	br_summaryscreen_printenv(" MAC1       :", "br_mac1", "ethaddr", "\n");
+	br_summaryscreen_printenv(" MAC2       :", "br_mac2", 0, "\n");
 	lcd_puts(" Bootloader : " PLAIN_VERSION "\n");
 	lcd_puts("\n");
 }