Re: [PATCH] USB OTG: make dwc2 otg driver dependent on Exynos platform

2025-08-04 Thread Marius Dinu
On Mon, 2025-08-04 09.43.53 ++, Marius Dinu wrote: > drivers/usb/gadget/dwc2_udc_otg_phy.c uses s5p_cpu_id, > which is only defined for Exynos CPUs. > > Signed-off-by: Marius Dinu > --- > drivers/usb/gadget/Kconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion

[PATCH] USB OTG: make dwc2 otg driver dependent on Exynos platform

2025-08-04 Thread Marius Dinu
drivers/usb/gadget/dwc2_udc_otg_phy.c uses s5p_cpu_id, which is only defined for Exynos CPUs. Signed-off-by: Marius Dinu --- drivers/usb/gadget/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index 46a83141481

[PATCH] Timers: prevent conflict between ARM Generic Timer and Timer drivers

2025-08-01 Thread Marius Dinu
ARM Generic Timer is not selected. If it's selected, shows a warning explaining why Timers aren't visible. Signed-off-by: Marius Dinu --- arch/arm/Kconfig | 2 ++ drivers/timer/Kconfig | 5 + 2 files changed, 7 insertions(+) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 4e

[PATCH] cmd: add "config" command dependency on gzip

2025-06-11 Thread Marius Dinu
gunzip is used in cmd/config.c Signed-off-by: Marius Dinu --- cmd/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index f21d27cb27f..057f091bf3b 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -153,6 +153,7 @@ config CMD_CONFIG bool "c

[PATCH] rk3288: add fdtoverlay_addr_r to default env

2025-06-11 Thread Marius Dinu
rk3288 is missing fdtoverlay_addr_r. The new addresses match those used by rk3308. Tested on Asus TinkerBoard S. Signed-off-by: Marius Dinu Cc: Simon Glass Cc: Philipp Tomsich Cc: Kever Yang --- include/configs/rk3288_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff

[PATCH] EXT4: add CRC16 dependency

2025-05-08 Thread Marius Dinu
CRC16 is used in ext4_common.c. Build fails without it. PS: This is my first patch sent to a mailing list. If there is anything wrong with it (email format, whitespace, etc.) please let me know. Signed-off-by: Marius Dinu --- fs/ext4/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a