[PATCH] global: Add expected space between '#include' and directive
Tom Rini
trini at konsulko.com
Sat Oct 4 21:31:46 CEST 2025
These files had '#include<file.h>' rather than '#include <file.h>' which
while functional is not the correct style.
Signed-off-by: Tom Rini <trini at konsulko.com>
---
configs/am62x_evm_r5_ethboot_defconfig | 2 +-
configs/am65x_evm_r5_usbdfu_defconfig | 2 +-
drivers/usb/common/fsl-errata.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configs/am62x_evm_r5_ethboot_defconfig b/configs/am62x_evm_r5_ethboot_defconfig
index 96b2c28825fe..5ad4d3f0e5cc 100644
--- a/configs/am62x_evm_r5_ethboot_defconfig
+++ b/configs/am62x_evm_r5_ethboot_defconfig
@@ -1,4 +1,4 @@
-#include<configs/am62x_evm_r5_defconfig>
+#include <configs/am62x_evm_r5_defconfig>
CONFIG_ARM=y
CONFIG_ARCH_K3=y
diff --git a/configs/am65x_evm_r5_usbdfu_defconfig b/configs/am65x_evm_r5_usbdfu_defconfig
index 3ac494f01263..f9161f1fe111 100644
--- a/configs/am65x_evm_r5_usbdfu_defconfig
+++ b/configs/am65x_evm_r5_usbdfu_defconfig
@@ -1,4 +1,4 @@
-#include<configs/am65x_evm_r5_defconfig>
+#include <configs/am65x_evm_r5_defconfig>
CONFIG_ARM=y
CONFIG_ARCH_K3=y
diff --git a/drivers/usb/common/fsl-errata.c b/drivers/usb/common/fsl-errata.c
index 89ae73f2ba48..66ff93b2982b 100644
--- a/drivers/usb/common/fsl-errata.c
+++ b/drivers/usb/common/fsl-errata.c
@@ -7,7 +7,7 @@
#include <hwconfig.h>
#include <fsl_errata.h>
-#include<fsl_usb.h>
+#include <fsl_usb.h>
#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3) || \
defined(CONFIG_ARM)
#include <asm/arch/clock.h>
--
2.43.0
More information about the U-Boot
mailing list