Skip to content

Commit 3bc544d

Browse files
author
Robert Lipe
committed
clean components/ whitespace issues
image_conf, make_scripts_riscv - Delete trailing spaces. Change tabs to 4 space multiples. .c and .h get tabs expanded to four spaces for consistency, traliing whitespace whacked. Makefiles do NOT get tabs changed.
1 parent e82b9d7 commit 3bc544d

File tree

621 files changed

+88783
-88783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

621 files changed

+88783
-88783
lines changed

components/audio/audio_device/bouffalo.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ COMPONENT_ADD_INCLUDEDIRS += audio_device/include
66
## not be exported to project level
77
COMPONENT_PRIV_INCLUDEDIRS := audio_device/include
88

9-
## This component's src
9+
## This component's src
1010
ifeq ($(CONFIG_CHIP_NAME),BL602)
1111
COMPONENT_SRCS := bl602_dac/bl602_dac_device.c
1212
COMPONENT_SRCDIRS := bl602_dac
1313
endif
1414

1515
ifeq ($(CONFIG_CHIP_NAME),BL60X)
16-
COMPONENT_SRCS := bl60x_i2s/bl60x_i2s_device.c
16+
COMPONENT_SRCS := bl60x_i2s/bl60x_i2s_device.c
1717
COMPONENT_SRCDIRS := bl60x_i2s
1818
endif
1919

2020
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
2121

2222
##
23-
#CPPFLAGS +=
23+
#CPPFLAGS +=

components/audio/audio_framework/bouffalo.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ COMPONENT_ADD_INCLUDEDIRS += audio_framework/include
66
## not be exported to project level
77
COMPONENT_PRIV_INCLUDEDIRS := audio_framework/include
88

9-
## This component's src
9+
## This component's src
1010
COMPONENT_SRCS := audio_framework/audio_framework.c
1111

1212
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
@@ -15,4 +15,4 @@ COMPONENT_SRCDIRS := audio_framework
1515

1616

1717
##
18-
#CPPFLAGS +=
18+
#CPPFLAGS +=

components/bl602/bl602/evb/evb.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ toolchains := gcc
33
# Component Makefile
44
#
55
## These include paths would be exported to project level
6-
COMPONENT_ADD_INCLUDEDIRS +=
7-
6+
COMPONENT_ADD_INCLUDEDIRS +=
7+
88
## not be exported to project level
9-
COMPONENT_PRIV_INCLUDEDIRS :=
9+
COMPONENT_PRIV_INCLUDEDIRS :=
1010

11-
## This component's src
11+
## This component's src
1212
COMPONENT_SRCS1 := evb/src/boot/$(toolchains)/entry.S \
1313
evb/src/boot/$(toolchains)/start.S \
1414
evb/src/debug.c \
@@ -39,7 +39,7 @@ endif
3939
##
4040
COMPONENT_ADD_LDFLAGS += -L $(COMPONENT_PATH)/evb/ld \
4141
$(addprefix -T ,$(LINKER_SCRIPTS))
42-
##
42+
##
4343
COMPONENT_ADD_LINKER_DEPS := $(addprefix evb/ld/,$(LINKER_SCRIPTS))
4444
endif
4545

components/bl602/bl602/evb/ld/flash.ld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ SECTIONS
123123
*(.srodata.cst4)
124124
*(.srodata.cst2)
125125
*(.srodata .srodata.*)
126-
126+
127127
. = ALIGN(8);
128128
*(._k_queue.static.*)
129129
*(._k_sem.static.*)
@@ -196,7 +196,7 @@ SECTIONS
196196

197197
/*BOOT2 sections*/
198198
PROVIDE ( __boot2_pt_addr_src = BOOT2_PT_ADDR );
199-
PROVIDE ( __boot2_flashCfg_src = BOOT2_FLASHCFG_ADDR );
199+
PROVIDE ( __boot2_flashCfg_src = BOOT2_FLASHCFG_ADDR );
200200

201201
PROVIDE(__LD_CONFIG_EM_SEL = __EM_SIZE);
202202
}

components/bl602/bl602/evb/ld/flash_rom.ld

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ SECTIONS
7272
_bl_static_blogpri_code_end = .;
7373

7474
*(.gnu.linkonce.r.*)
75-
75+
7676
/*Framework table section, use ALIGN here to avoid fill section*/
7777
. = ALIGN(4);
7878
_rom_framework_audio_device_start = .;
@@ -136,7 +136,7 @@ SECTIONS
136136
*(.srodata.cst4)
137137
*(.srodata.cst2)
138138
*(.srodata .srodata.*)
139-
139+
140140
. = ALIGN(8);
141141
*(._k_queue.static.*)
142142
*(._k_sem.static.*)
@@ -213,7 +213,7 @@ SECTIONS
213213

214214
/*BOOT2 sections*/
215215
PROVIDE ( __boot2_pt_addr_src = BOOT2_PT_ADDR );
216-
PROVIDE ( __boot2_flashCfg_src = BOOT2_FLASHCFG_ADDR );
216+
PROVIDE ( __boot2_flashCfg_src = BOOT2_FLASHCFG_ADDR );
217217

218218
PROVIDE(xTaskGetTickCount = 0x0000000021017694);
219219
PROVIDE(xTaskGetTickCountFromISR = 0x00000000210176aa);
@@ -269,7 +269,7 @@ SECTIONS
269269
PROVIDE(vTaskStartScheduler = 0x0000000021017610);
270270
PROVIDE(vPortDefineHeapRegions = 0x00000000210197da);
271271
PROVIDE(__LD_CONFIG_EM_SEL = __EM_SIZE);
272-
272+
273273
PROVIDE( _ld_symbol_rom_framework_audio_device_start = _rom_framework_audio_device_start);
274274
PROVIDE( _ld_symbol_rom_framework_audio_device_end = _rom_framework_audio_device_end);
275275

components/bl602/bl602/evb/ld/ram.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ SECTIONS
9393
PROVIDE( _ld_ram_addr1 = 0);
9494
PROVIDE( _ld_ram_size2 = 0);
9595
PROVIDE( _ld_ram_addr2 = 0);
96-
96+
9797
}

components/bl602/bl602/evb/src/compat_attribute.h

100755100644
File mode changed.

0 commit comments

Comments
 (0)