Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
b7d58394
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b7d58394
编写于
12月 11, 2006
作者:
F
Francois Romieu
提交者:
Jeff Garzik
2月 05, 2007
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chelsio: the return statement is not a function
Signed-off-by:
N
Francois Romieu
<
romieu@fr.zoreil.com
>
上级
c697f83e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
14 deletion
+14
-14
drivers/net/chelsio/my3126.c
drivers/net/chelsio/my3126.c
+8
-8
drivers/net/chelsio/vsc7326.c
drivers/net/chelsio/vsc7326.c
+6
-6
未找到文件。
drivers/net/chelsio/my3126.c
浏览文件 @
b7d58394
...
...
@@ -10,25 +10,25 @@ static int my3126_reset(struct cphy *cphy, int wait)
* This can be done through registers. It is not required since
* a full chip reset is used.
*/
return
(
0
)
;
return
0
;
}
static
int
my3126_interrupt_enable
(
struct
cphy
*
cphy
)
{
schedule_delayed_work
(
&
cphy
->
phy_update
,
HZ
/
30
);
t1_tpi_read
(
cphy
->
adapter
,
A_ELMER0_GPO
,
&
cphy
->
elmer_gpo
);
return
(
0
)
;
return
0
;
}
static
int
my3126_interrupt_disable
(
struct
cphy
*
cphy
)
{
cancel_rearming_delayed_work
(
&
cphy
->
phy_update
);
return
(
0
)
;
return
0
;
}
static
int
my3126_interrupt_clear
(
struct
cphy
*
cphy
)
{
return
(
0
)
;
return
0
;
}
#define OFFSET(REG_ADDR) (REG_ADDR << 2)
...
...
@@ -102,7 +102,7 @@ static void my3216_poll(struct work_struct *work)
static
int
my3126_set_loopback
(
struct
cphy
*
cphy
,
int
on
)
{
return
(
0
)
;
return
0
;
}
/* To check the activity LED */
...
...
@@ -146,7 +146,7 @@ static int my3126_get_link_status(struct cphy *cphy,
if
(
fc
)
*
fc
=
PAUSE_RX
|
PAUSE_TX
;
return
(
0
)
;
return
0
;
}
static
void
my3126_destroy
(
struct
cphy
*
cphy
)
...
...
@@ -177,7 +177,7 @@ static struct cphy *my3126_phy_create(adapter_t *adapter,
INIT_DELAYED_WORK
(
&
cphy
->
phy_update
,
my3216_poll
);
cphy
->
bmsr
=
0
;
return
(
cphy
)
;
return
cphy
;
}
/* Chip Reset */
...
...
@@ -198,7 +198,7 @@ static int my3126_phy_reset(adapter_t * adapter)
val
|=
0x8000
;
t1_tpi_write
(
adapter
,
A_ELMER0_GPO
,
val
);
udelay
(
100
);
return
(
0
)
;
return
0
;
}
struct
gphy
t1_my3126_ops
=
{
...
...
drivers/net/chelsio/vsc7326.c
浏览文件 @
b7d58394
...
...
@@ -256,7 +256,7 @@ static int bist_rd(adapter_t *adapter, int moduleid, int address)
else
if
((
result
&
(
1
<<
8
))
!=
0x0
)
CH_ERR
(
"bist read error: 0x%x
\n
"
,
result
);
return
(
result
&
0xff
);
return
(
result
&
0xff
);
}
static
int
bist_wr
(
adapter_t
*
adapter
,
int
moduleid
,
int
address
,
int
value
)
...
...
@@ -286,7 +286,7 @@ static int bist_wr(adapter_t *adapter, int moduleid, int address, int value)
else
if
((
result
&
(
1
<<
26
))
!=
0x0
)
CH_ERR
(
"bist write error: 0x%x
\n
"
,
result
);
return
(
0
)
;
return
0
;
}
static
int
run_bist
(
adapter_t
*
adapter
,
int
moduleid
)
...
...
@@ -295,7 +295,7 @@ static int run_bist(adapter_t *adapter, int moduleid)
(
void
)
bist_wr
(
adapter
,
moduleid
,
0x00
,
0x02
);
(
void
)
bist_wr
(
adapter
,
moduleid
,
0x01
,
0x01
);
return
(
0
)
;
return
0
;
}
static
int
check_bist
(
adapter_t
*
adapter
,
int
moduleid
)
...
...
@@ -309,14 +309,14 @@ static int check_bist(adapter_t *adapter, int moduleid)
if
((
result
&
3
)
!=
0x3
)
CH_ERR
(
"Result: 0x%x BIST error in ram %d, column: 0x%04x
\n
"
,
result
,
moduleid
,
column
);
return
(
0
)
;
return
0
;
}
static
int
enable_mem
(
adapter_t
*
adapter
,
int
moduleid
)
{
/*enable mem*/
(
void
)
bist_wr
(
adapter
,
moduleid
,
0x00
,
0x00
);
return
(
0
)
;
return
0
;
}
static
int
run_bist_all
(
adapter_t
*
adapter
)
...
...
@@ -358,7 +358,7 @@ static int run_bist_all(adapter_t *adapter)
udelay
(
300
);
vsc_write
(
adapter
,
REG_MEM_BIST
,
0x0
);
mdelay
(
10
);
return
(
0
)
;
return
0
;
}
static
int
mac_intr_handler
(
struct
cmac
*
mac
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录