forked from Ivasoft/openwrt
ar71xx: remove a non-upstream spi core patch
- use standard flags instead - remove dead code from the rb4xx spi drivers Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
@@ -107,7 +107,7 @@ static unsigned char rb4xx_nand_read_byte(struct mtd_info *mtd)
|
||||
unsigned char data = 0;
|
||||
int err;
|
||||
|
||||
err = rb4xx_cpld_read(&data, NULL, 1);
|
||||
err = rb4xx_cpld_read(&data, 1);
|
||||
if (err) {
|
||||
pr_err("rb4xx_nand: read data failed, err=%d\n", err);
|
||||
data = 0xff;
|
||||
@@ -131,7 +131,7 @@ static void rb4xx_nand_read_buf(struct mtd_info *mtd, unsigned char *buf,
|
||||
{
|
||||
int err;
|
||||
|
||||
err = rb4xx_cpld_read(buf, NULL, len);
|
||||
err = rb4xx_cpld_read(buf, len);
|
||||
if (err)
|
||||
pr_err("rb4xx_nand: read buf failed, err=%d\n", err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user