Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
22c60f5f
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看板
提交
22c60f5f
编写于
4月 04, 2005
作者:
T
Thomas Gleixner
提交者:
Thomas Gleixner
5月 23, 2005
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MTD] NAND: Move the NULL check into the calling function
Signed-off-by:
N
Thomas Gleixner
<
tglx@linutronix.de
>
上级
bb75ba4c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
8 deletion
+8
-8
drivers/mtd/nand/nand_base.c
drivers/mtd/nand/nand_base.c
+8
-8
未找到文件。
drivers/mtd/nand/nand_base.c
浏览文件 @
22c60f5f
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
* The AG-AND chips have nice features for speed improvement,
* The AG-AND chips have nice features for speed improvement,
* which are not supported yet. Read / program 4 pages in one go.
* which are not supported yet. Read / program 4 pages in one go.
*
*
* $Id: nand_base.c,v 1.1
39 2005/04/04 18:02:23 dbrown
Exp $
* $Id: nand_base.c,v 1.1
40 2005/04/04 18:56:29 gleixner
Exp $
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* it under the terms of the GNU General Public License version 2 as
...
@@ -1060,8 +1060,8 @@ static int nand_verify_pages (struct mtd_info *mtd, struct nand_chip *this, int
...
@@ -1060,8 +1060,8 @@ static int nand_verify_pages (struct mtd_info *mtd, struct nand_chip *this, int
*/
*/
static
int
nand_read
(
struct
mtd_info
*
mtd
,
loff_t
from
,
size_t
len
,
size_t
*
retlen
,
u_char
*
buf
)
static
int
nand_read
(
struct
mtd_info
*
mtd
,
loff_t
from
,
size_t
len
,
size_t
*
retlen
,
u_char
*
buf
)
{
{
return
nand_do_read_ecc
(
mtd
,
from
,
len
,
retlen
,
buf
,
NULL
,
NULL
,
0xff
);
return
nand_do_read_ecc
(
mtd
,
from
,
len
,
retlen
,
buf
,
NULL
,
&
mtd
->
oobinfo
,
0xff
);
}
}
/**
/**
...
@@ -1079,6 +1079,9 @@ static int nand_read (struct mtd_info *mtd, loff_t from, size_t len, size_t * re
...
@@ -1079,6 +1079,9 @@ static int nand_read (struct mtd_info *mtd, loff_t from, size_t len, size_t * re
static
int
nand_read_ecc
(
struct
mtd_info
*
mtd
,
loff_t
from
,
size_t
len
,
static
int
nand_read_ecc
(
struct
mtd_info
*
mtd
,
loff_t
from
,
size_t
len
,
size_t
*
retlen
,
u_char
*
buf
,
u_char
*
oob_buf
,
struct
nand_oobinfo
*
oobsel
)
size_t
*
retlen
,
u_char
*
buf
,
u_char
*
oob_buf
,
struct
nand_oobinfo
*
oobsel
)
{
{
/* use userspace supplied oobinfo, if zero */
if
(
oobsel
==
NULL
)
oobsel
=
&
mtd
->
oobinfo
;
return
nand_do_read_ecc
(
mtd
,
from
,
len
,
retlen
,
buf
,
oob_buf
,
oobsel
,
0xff
);
return
nand_do_read_ecc
(
mtd
,
from
,
len
,
retlen
,
buf
,
oob_buf
,
oobsel
,
0xff
);
}
}
...
@@ -1091,7 +1094,7 @@ static int nand_read_ecc (struct mtd_info *mtd, loff_t from, size_t len,
...
@@ -1091,7 +1094,7 @@ static int nand_read_ecc (struct mtd_info *mtd, loff_t from, size_t len,
* @retlen: pointer to variable to store the number of read bytes
* @retlen: pointer to variable to store the number of read bytes
* @buf: the databuffer to put data
* @buf: the databuffer to put data
* @oob_buf: filesystem supplied oob data buffer (can be NULL)
* @oob_buf: filesystem supplied oob data buffer (can be NULL)
* @oobsel: oob selection structure
(can be NULL)
* @oobsel: oob selection structure
* @flags: flag to indicate if nand_get_device/nand_release_device should be preformed
* @flags: flag to indicate if nand_get_device/nand_release_device should be preformed
* and how many corrected error bits are acceptable:
* and how many corrected error bits are acceptable:
* bits 0..7 - number of tolerable errors
* bits 0..7 - number of tolerable errors
...
@@ -1103,10 +1106,7 @@ int nand_do_read_ecc (struct mtd_info *mtd, loff_t from, size_t len,
...
@@ -1103,10 +1106,7 @@ int nand_do_read_ecc (struct mtd_info *mtd, loff_t from, size_t len,
size_t
*
retlen
,
u_char
*
buf
,
u_char
*
oob_buf
,
size_t
*
retlen
,
u_char
*
buf
,
u_char
*
oob_buf
,
struct
nand_oobinfo
*
oobsel
,
int
flags
)
struct
nand_oobinfo
*
oobsel
,
int
flags
)
{
{
/* use userspace supplied oobinfo, if zero */
if
(
oobsel
==
NULL
)
oobsel
=
&
mtd
->
oobinfo
;
int
i
,
j
,
col
,
realpage
,
page
,
end
,
ecc
,
chipnr
,
sndcmd
=
1
;
int
i
,
j
,
col
,
realpage
,
page
,
end
,
ecc
,
chipnr
,
sndcmd
=
1
;
int
read
=
0
,
oob
=
0
,
ecc_status
=
0
,
ecc_failed
=
0
;
int
read
=
0
,
oob
=
0
,
ecc_status
=
0
,
ecc_failed
=
0
;
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
nand_chip
*
this
=
mtd
->
priv
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录