Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
be680c71
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
be680c71
编写于
1月 08, 2009
作者:
R
Russell King
提交者:
Russell King
1月 08, 2009
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'next-footbridge' of
git://aeryn.fluff.org.uk/bjdooks/linux
上级
d8f2f180
0dc6c490
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
17 addition
and
12 deletion
+17
-12
arch/arm/kernel/isa.c
arch/arm/kernel/isa.c
+1
-0
arch/arm/mach-footbridge/common.c
arch/arm/mach-footbridge/common.c
+0
-2
arch/arm/mach-footbridge/common.h
arch/arm/mach-footbridge/common.h
+1
-0
arch/arm/mach-footbridge/dc21285.c
arch/arm/mach-footbridge/dc21285.c
+13
-10
arch/arm/mach-footbridge/isa-irq.c
arch/arm/mach-footbridge/isa-irq.c
+2
-0
未找到文件。
arch/arm/kernel/isa.c
浏览文件 @
be680c71
...
...
@@ -16,6 +16,7 @@
#include <linux/fs.h>
#include <linux/sysctl.h>
#include <linux/init.h>
#include <linux/io.h>
static
unsigned
int
isa_membase
,
isa_portbase
,
isa_portshift
;
...
...
arch/arm/mach-footbridge/common.c
浏览文件 @
be680c71
...
...
@@ -28,8 +28,6 @@
#include "common.h"
extern
void
__init
isa_init_irq
(
unsigned
int
irq
);
unsigned
int
mem_fclk_21285
=
50000000
;
EXPORT_SYMBOL
(
mem_fclk_21285
);
...
...
arch/arm/mach-footbridge/common.h
浏览文件 @
be680c71
...
...
@@ -7,3 +7,4 @@ extern void isa_rtc_init(void);
extern
void
footbridge_map_io
(
void
);
extern
void
footbridge_init_irq
(
void
);
extern
void
isa_init_irq
(
unsigned
int
irq
);
arch/arm/mach-footbridge/dc21285.c
浏览文件 @
be680c71
...
...
@@ -287,6 +287,9 @@ struct pci_bus * __init dc21285_scan_bus(int nr, struct pci_sys_data *sys)
return
pci_scan_bus
(
0
,
&
dc21285_ops
,
sys
);
}
#define dc21285_request_irq(_a, _b, _c, _d, _e) \
WARN_ON(request_irq(_a, _b, _c, _d, _e) < 0)
void
__init
dc21285_preinit
(
void
)
{
unsigned
int
mem_size
,
mem_mask
;
...
...
@@ -335,16 +338,16 @@ void __init dc21285_preinit(void)
/*
* We don't care if these fail.
*/
request_irq
(
IRQ_PCI_SERR
,
dc21285_serr_irq
,
IRQF_DISABLED
,
"PCI system error"
,
&
serr_timer
);
request_irq
(
IRQ_PCI_PERR
,
dc21285_parity_irq
,
IRQF_DISABLED
,
"PCI parity error"
,
&
perr_timer
);
request_irq
(
IRQ_PCI_ABORT
,
dc21285_abort_irq
,
IRQF_DISABLED
,
"PCI abort"
,
NULL
);
request_irq
(
IRQ_DISCARD_TIMER
,
dc21285_discard_irq
,
IRQF_DISABLED
,
"Discard timer"
,
NULL
);
request_irq
(
IRQ_PCI_DPERR
,
dc21285_dparity_irq
,
IRQF_DISABLED
,
"PCI data parity"
,
NULL
);
dc21285_
request_irq
(
IRQ_PCI_SERR
,
dc21285_serr_irq
,
IRQF_DISABLED
,
"PCI system error"
,
&
serr_timer
);
dc21285_
request_irq
(
IRQ_PCI_PERR
,
dc21285_parity_irq
,
IRQF_DISABLED
,
"PCI parity error"
,
&
perr_timer
);
dc21285_
request_irq
(
IRQ_PCI_ABORT
,
dc21285_abort_irq
,
IRQF_DISABLED
,
"PCI abort"
,
NULL
);
dc21285_
request_irq
(
IRQ_DISCARD_TIMER
,
dc21285_discard_irq
,
IRQF_DISABLED
,
"Discard timer"
,
NULL
);
dc21285_
request_irq
(
IRQ_PCI_DPERR
,
dc21285_dparity_irq
,
IRQF_DISABLED
,
"PCI data parity"
,
NULL
);
if
(
cfn_mode
)
{
static
struct
resource
csrio
;
...
...
arch/arm/mach-footbridge/isa-irq.c
浏览文件 @
be680c71
...
...
@@ -28,6 +28,8 @@
#include <asm/irq.h>
#include <asm/mach-types.h>
#include "common.h"
static
void
isa_mask_pic_lo_irq
(
unsigned
int
irq
)
{
unsigned
int
mask
=
1
<<
(
irq
&
7
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录