Skip to content

Commit dc6c800

Browse files
committed
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 <[email protected]>
1 parent c23688d commit dc6c800

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

configs/am62x_evm_r5_ethboot_defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include<configs/am62x_evm_r5_defconfig>
1+
#include <configs/am62x_evm_r5_defconfig>
22

33
CONFIG_ARM=y
44
CONFIG_ARCH_K3=y

configs/am65x_evm_r5_usbdfu_defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include<configs/am65x_evm_r5_defconfig>
1+
#include <configs/am65x_evm_r5_defconfig>
22

33
CONFIG_ARM=y
44
CONFIG_ARCH_K3=y

drivers/usb/common/fsl-errata.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#include <hwconfig.h>
99
#include <fsl_errata.h>
10-
#include<fsl_usb.h>
10+
#include <fsl_usb.h>
1111
#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3) || \
1212
defined(CONFIG_ARM)
1313
#include <asm/arch/clock.h>

0 commit comments

Comments
 (0)