Re: [U-Boot] [PATCH] mips: rename arch mt7620 to mt7628

2019-04-28 Thread Stefan Roese
On 28.04.19 11:38, Weijie Gao wrote: The MediaTek MT7620 and MT7628 SoCs are different. Although they use the same memory controller, the lowlevel code (CPU PLL) and other peripherals they use are totally different. Which means they should use seperate mach directories. s/seperate/separate Cu

Re: [U-Boot] [PATCH 1/8] Kconfig: Update CONFIG_BROKEN help text

2019-04-28 Thread Heinrich Schuchardt
On 4/28/19 10:47 PM, Jagan Teki wrote: Add bool text to describe what configurations is this for. Update help text to describe the example use-case configs which comes under CONFIG_BROKEN, they are - legacy driver that would need dm conversion. - legacy driver that doesn't have proper update sin

Re: [U-Boot] [PATCH 2/8] Makefile: Trigger a Warning if BROKEN defined

2019-04-28 Thread Heinrich Schuchardt
On 4/28/19 10:47 PM, Jagan Teki wrote: If configured target has broken config enabled, trigger a warning saying that the desired .config has broken configuration. Cc: Heinrich Schuchardt Signed-off-by: Jagan Teki --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b

[U-Boot] [PATCH 1/1] lib/vsprintf: remove #include from vsprintf.c

2019-04-28 Thread Heinrich Schuchardt
common.h already includes uuid.h Signed-off-by: Heinrich Schuchardt --- lib/vsprintf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 2403825dc9..3502b8088f 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -16,7 +16,6 @@ #include #include #includ

[U-Boot] [PATCH v3 1/1] lib/vsprintf: allow printing upper case GUIDs

2019-04-28 Thread Heinrich Schuchardt
In the UEFI context GUIDs are expected to be rendered in upper case. The patch uses the formerly unused bit 1 of the parameter str_format of function uuid_bin_to_str() to indicate if we need upper or lower case output. Function uuid_string() in vsprint.c is adjusted to correctly set the bit depen

<    1   2