Skip to content

Commit 3366631

Browse files
committed
[LIBC/AIO] Set the AIO work stack size default.
Signed-off-by: GuEe-GUI <[email protected]>
1 parent 2fb53c8 commit 3366631

File tree

8 files changed

+1363
-34
lines changed

8 files changed

+1363
-34
lines changed

components/drivers/dma/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ menuconfig RT_USING_DMA
55
select RT_USING_ADT_BITMAP
66
default n
77

8+
config RT_DMA_PL330
9+
bool "ARM PL330"
10+
depends on RT_USING_DMA
11+
depends on RT_USING_CLK
12+
depends on RT_USING_RESET
13+
default n
14+
815
if RT_USING_DMA
916
osource "$(SOC_DM_DMA_DIR)/Kconfig"
1017
endif

components/drivers/dma/SConscript

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ CPPPATH = [cwd + '/../include']
1010

1111
src = ['dma.c', 'dma_pool.c']
1212

13+
if GetDepend(['RT_DMA_PL330']):
14+
src += ['dma-pl330.c']
15+
1316
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
1417

1518
Return('group')

0 commit comments

Comments
 (0)