Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
06efcad0
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
06efcad0
编写于
10月 19, 2007
作者:
J
Jeff Garzik
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Eliminate pointless casts from void* in a few driver irq handlers.
Signed-off-by:
N
Jeff Garzik
<
jgarzik@redhat.com
>
上级
5712cb3d
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
10 addition
and
9 deletion
+10
-9
drivers/atm/horizon.c
drivers/atm/horizon.c
+3
-2
drivers/char/tpm/tpm_tis.c
drivers/char/tpm/tpm_tis.c
+2
-2
drivers/mtd/onenand/onenand_base.c
drivers/mtd/onenand/onenand_base.c
+1
-1
drivers/net/typhoon.c
drivers/net/typhoon.c
+1
-1
drivers/net/ucc_geth.c
drivers/net/ucc_geth.c
+1
-1
drivers/net/wan/sbni.c
drivers/net/wan/sbni.c
+2
-2
未找到文件。
drivers/atm/horizon.c
浏览文件 @
06efcad0
...
...
@@ -1382,8 +1382,9 @@ static inline void rx_data_av_handler (hrz_dev * dev) {
/********** interrupt handler **********/
static
irqreturn_t
interrupt_handler
(
int
irq
,
void
*
dev_id
)
{
hrz_dev
*
dev
=
(
hrz_dev
*
)
dev_id
;
static
irqreturn_t
interrupt_handler
(
int
irq
,
void
*
dev_id
)
{
hrz_dev
*
dev
=
dev_id
;
u32
int_source
;
unsigned
int
irq_ok
;
...
...
drivers/char/tpm/tpm_tis.c
浏览文件 @
06efcad0
...
...
@@ -381,7 +381,7 @@ static struct tpm_vendor_specific tpm_tis = {
static
irqreturn_t
tis_int_probe
(
int
irq
,
void
*
dev_id
)
{
struct
tpm_chip
*
chip
=
(
struct
tpm_chip
*
)
dev_id
;
struct
tpm_chip
*
chip
=
dev_id
;
u32
interrupt
;
interrupt
=
ioread32
(
chip
->
vendor
.
iobase
+
...
...
@@ -401,7 +401,7 @@ static irqreturn_t tis_int_probe(int irq, void *dev_id)
static
irqreturn_t
tis_int_handler
(
int
irq
,
void
*
dev_id
)
{
struct
tpm_chip
*
chip
=
(
struct
tpm_chip
*
)
dev_id
;
struct
tpm_chip
*
chip
=
dev_id
;
u32
interrupt
;
int
i
;
...
...
drivers/mtd/onenand/onenand_base.c
浏览文件 @
06efcad0
...
...
@@ -359,7 +359,7 @@ static int onenand_wait(struct mtd_info *mtd, int state)
*/
static
irqreturn_t
onenand_interrupt
(
int
irq
,
void
*
data
)
{
struct
onenand_chip
*
this
=
(
struct
onenand_chip
*
)
data
;
struct
onenand_chip
*
this
=
data
;
/* To handle shared interrupt */
if
(
!
this
->
complete
.
done
)
...
...
drivers/net/typhoon.c
浏览文件 @
06efcad0
...
...
@@ -1801,7 +1801,7 @@ typhoon_poll(struct napi_struct *napi, int budget)
static
irqreturn_t
typhoon_interrupt
(
int
irq
,
void
*
dev_instance
)
{
struct
net_device
*
dev
=
(
struct
net_device
*
)
dev_instance
;
struct
net_device
*
dev
=
dev_instance
;
struct
typhoon
*
tp
=
dev
->
priv
;
void
__iomem
*
ioaddr
=
tp
->
ioaddr
;
u32
intr_status
;
...
...
drivers/net/ucc_geth.c
浏览文件 @
06efcad0
...
...
@@ -3607,7 +3607,7 @@ static int ucc_geth_poll(struct napi_struct *napi, int budget)
static
irqreturn_t
ucc_geth_irq_handler
(
int
irq
,
void
*
info
)
{
struct
net_device
*
dev
=
(
struct
net_device
*
)
info
;
struct
net_device
*
dev
=
info
;
struct
ucc_geth_private
*
ugeth
=
netdev_priv
(
dev
);
struct
ucc_fast_private
*
uccf
;
struct
ucc_geth_info
*
ug_info
;
...
...
drivers/net/wan/sbni.c
浏览文件 @
06efcad0
...
...
@@ -502,8 +502,8 @@ sbni_start_xmit( struct sk_buff *skb, struct net_device *dev )
static
irqreturn_t
sbni_interrupt
(
int
irq
,
void
*
dev_id
)
{
struct
net_device
*
dev
=
(
struct
net_device
*
)
dev_id
;
struct
net_local
*
nl
=
(
struct
net_local
*
)
dev
->
priv
;
struct
net_device
*
dev
=
dev_id
;
struct
net_local
*
nl
=
dev
->
priv
;
int
repeat
;
spin_lock
(
&
nl
->
lock
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录