Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
7553ee77
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
7553ee77
编写于
7月 05, 2011
作者:
N
Nicolas Pitre
提交者:
Nicolas Pitre
7月 18, 2011
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARM: mach-ixp4xx: move from ARM_DMA_ZONE_SIZE to mdesc->dma_zone_size
Signed-off-by:
N
Nicolas Pitre
<
nicolas.pitre@linaro.org
>
上级
5065c71d
变更
13
隐藏空白更改
内联
并排
Showing
13 changed file
with
48 addition
and
4 deletion
+48
-4
arch/arm/mach-ixp4xx/avila-setup.c
arch/arm/mach-ixp4xx/avila-setup.c
+6
-0
arch/arm/mach-ixp4xx/coyote-setup.c
arch/arm/mach-ixp4xx/coyote-setup.c
+3
-0
arch/arm/mach-ixp4xx/dsmg600-setup.c
arch/arm/mach-ixp4xx/dsmg600-setup.c
+3
-0
arch/arm/mach-ixp4xx/fsg-setup.c
arch/arm/mach-ixp4xx/fsg-setup.c
+3
-0
arch/arm/mach-ixp4xx/gateway7001-setup.c
arch/arm/mach-ixp4xx/gateway7001-setup.c
+3
-0
arch/arm/mach-ixp4xx/goramo_mlr.c
arch/arm/mach-ixp4xx/goramo_mlr.c
+3
-0
arch/arm/mach-ixp4xx/gtwx5715-setup.c
arch/arm/mach-ixp4xx/gtwx5715-setup.c
+3
-0
arch/arm/mach-ixp4xx/include/mach/memory.h
arch/arm/mach-ixp4xx/include/mach/memory.h
+0
-4
arch/arm/mach-ixp4xx/ixdp425-setup.c
arch/arm/mach-ixp4xx/ixdp425-setup.c
+12
-0
arch/arm/mach-ixp4xx/nas100d-setup.c
arch/arm/mach-ixp4xx/nas100d-setup.c
+3
-0
arch/arm/mach-ixp4xx/nslu2-setup.c
arch/arm/mach-ixp4xx/nslu2-setup.c
+3
-0
arch/arm/mach-ixp4xx/vulcan-setup.c
arch/arm/mach-ixp4xx/vulcan-setup.c
+3
-0
arch/arm/mach-ixp4xx/wg302v2-setup.c
arch/arm/mach-ixp4xx/wg302v2-setup.c
+3
-0
未找到文件。
arch/arm/mach-ixp4xx/avila-setup.c
浏览文件 @
7553ee77
...
...
@@ -169,6 +169,9 @@ MACHINE_START(AVILA, "Gateworks Avila Network Platform")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
avila_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
/*
...
...
@@ -184,6 +187,9 @@ MACHINE_START(LOFT, "Giant Shoulder Inc Loft board")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
avila_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
arch/arm/mach-ixp4xx/coyote-setup.c
浏览文件 @
7553ee77
...
...
@@ -114,6 +114,9 @@ MACHINE_START(ADI_COYOTE, "ADI Engineering Coyote")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
coyote_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
...
...
arch/arm/mach-ixp4xx/dsmg600-setup.c
浏览文件 @
7553ee77
...
...
@@ -284,4 +284,7 @@ MACHINE_START(DSMG600, "D-Link DSM-G600 RevA")
.
init_irq
=
ixp4xx_init_irq
,
.
timer
=
&
dsmg600_timer
,
.
init_machine
=
dsmg600_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
arch/arm/mach-ixp4xx/fsg-setup.c
浏览文件 @
7553ee77
...
...
@@ -275,5 +275,8 @@ MACHINE_START(FSG, "Freecom FSG-3")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
fsg_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
arch/arm/mach-ixp4xx/gateway7001-setup.c
浏览文件 @
7553ee77
...
...
@@ -101,5 +101,8 @@ MACHINE_START(GATEWAY7001, "Gateway 7001 AP")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
gateway7001_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
arch/arm/mach-ixp4xx/goramo_mlr.c
浏览文件 @
7553ee77
...
...
@@ -501,4 +501,7 @@ MACHINE_START(GORAMO_MLR, "MultiLink")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
gmlr_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
arch/arm/mach-ixp4xx/gtwx5715-setup.c
浏览文件 @
7553ee77
...
...
@@ -169,6 +169,9 @@ MACHINE_START(GTWX5715, "Gemtek GTWX5715 (Linksys WRV54G)")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
gtwx5715_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
arch/arm/mach-ixp4xx/include/mach/memory.h
浏览文件 @
7553ee77
...
...
@@ -14,8 +14,4 @@
*/
#define PLAT_PHYS_OFFSET UL(0x00000000)
#ifdef CONFIG_PCI
#define ARM_DMA_ZONE_SIZE SZ_64M
#endif
#endif
arch/arm/mach-ixp4xx/ixdp425-setup.c
浏览文件 @
7553ee77
...
...
@@ -258,6 +258,9 @@ MACHINE_START(IXDP425, "Intel IXDP425 Development Platform")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
ixdp425_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
...
...
@@ -269,6 +272,9 @@ MACHINE_START(IXDP465, "Intel IXDP465 Development Platform")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
ixdp425_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
...
...
@@ -280,6 +286,9 @@ MACHINE_START(IXCDP1100, "Intel IXCDP1100 Development Platform")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
ixdp425_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
...
...
@@ -291,5 +300,8 @@ MACHINE_START(KIXRP435, "Intel KIXRP435 Reference Platform")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
ixdp425_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
arch/arm/mach-ixp4xx/nas100d-setup.c
浏览文件 @
7553ee77
...
...
@@ -319,4 +319,7 @@ MACHINE_START(NAS100D, "Iomega NAS 100d")
.
init_irq
=
ixp4xx_init_irq
,
.
timer
=
&
ixp4xx_timer
,
.
init_machine
=
nas100d_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
arch/arm/mach-ixp4xx/nslu2-setup.c
浏览文件 @
7553ee77
...
...
@@ -305,4 +305,7 @@ MACHINE_START(NSLU2, "Linksys NSLU2")
.
init_irq
=
ixp4xx_init_irq
,
.
timer
=
&
nslu2_timer
,
.
init_machine
=
nslu2_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
arch/arm/mach-ixp4xx/vulcan-setup.c
浏览文件 @
7553ee77
...
...
@@ -241,4 +241,7 @@ MACHINE_START(ARCOM_VULCAN, "Arcom/Eurotech Vulcan")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
vulcan_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
arch/arm/mach-ixp4xx/wg302v2-setup.c
浏览文件 @
7553ee77
...
...
@@ -102,5 +102,8 @@ MACHINE_START(WG302V2, "Netgear WG302 v2 / WAG302 v2")
.
timer
=
&
ixp4xx_timer
,
.
boot_params
=
0x0100
,
.
init_machine
=
wg302v2_init
,
#if defined(CONFIG_PCI)
.
dma_zone_size
=
SZ_64M
,
#endif
MACHINE_END
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录