From dc6c80056e21a27e28e1be62ac724302ef526841 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Sat, 4 Oct 2025 13:31:01 -0600 Subject: [PATCH] global: Add expected space between '#include' and directive These files had '#include' rather than '#include ' which while functional is not the correct style. Signed-off-by: Tom Rini --- 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 96b2c28825f..5ad4d3f0e5c 100644 --- a/configs/am62x_evm_r5_ethboot_defconfig +++ b/configs/am62x_evm_r5_ethboot_defconfig @@ -1,4 +1,4 @@ -#include +#include CONFIG_ARM=y CONFIG_ARCH_K3=y diff --git a/configs/am65x_evm_r5_usbdfu_defconfig b/configs/am65x_evm_r5_usbdfu_defconfig index 3ac494f0126..f9161f1fe11 100644 --- a/configs/am65x_evm_r5_usbdfu_defconfig +++ b/configs/am65x_evm_r5_usbdfu_defconfig @@ -1,4 +1,4 @@ -#include +#include CONFIG_ARM=y CONFIG_ARCH_K3=y diff --git a/drivers/usb/common/fsl-errata.c b/drivers/usb/common/fsl-errata.c index 89ae73f2ba4..66ff93b2982 100644 --- a/drivers/usb/common/fsl-errata.c +++ b/drivers/usb/common/fsl-errata.c @@ -7,7 +7,7 @@ #include #include -#include +#include #if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3) || \ defined(CONFIG_ARM) #include -- 2.47.3