提交 978cb38a 编写于 作者: S Sheng Yongjie (Sam 提交者: Kyungmin Park

[MTD] [OneNAND] Use the u_char instead of char in oobbuf

In function onenand_verify_oob, local variable oobbuf shall be unsigned char.

In the case of a value is >= 0x80, it's unequal in comparing the value in an unsigned char and signed char.
Signed-off-by: NSheng Yongjie (Sam) <samsheng@trident.com.cn>
Signed-off-by: NKyungmin Park <kyungmin.park@samsung.com>
上级 b2581be2
......@@ -1217,7 +1217,7 @@ int onenand_bbt_read_oob(struct mtd_info *mtd, loff_t from,
static int onenand_verify_oob(struct mtd_info *mtd, const u_char *buf, loff_t to)
{
struct onenand_chip *this = mtd->priv;
char oobbuf[64];
u_char oobbuf[64];
int status, i;
this->command(mtd, ONENAND_CMD_READOOB, to, mtd->oobsize);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册