diff options
author | Tom Rini <trini@konsulko.com> | 2025-10-04 13:31:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-10-04 13:31:01 -0600 |
commit | dc6c80056e21a27e28e1be62ac724302ef526841 (patch) | |
tree | f8e4239597041f0c2c158703534079c3119657f0 | |
parent | c23688d0533db87c533e415be7809b435080c7e4 (diff) |
global: Add expected space between '#include' and directive
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@konsulko.com>
-rw-r--r-- | configs/am62x_evm_r5_ethboot_defconfig | 2 | ||||
-rw-r--r-- | configs/am65x_evm_r5_usbdfu_defconfig | 2 | ||||
-rw-r--r-- | 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<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 3ac494f0126..f9161f1fe11 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 89ae73f2ba4..66ff93b2982 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> |