aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/mtd/nand/raw/qcom_nandc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c
index 81084044c636..2ade27e50c43 100644
--- a/drivers/mtd/nand/raw/qcom_nandc.c
+++ b/drivers/mtd/nand/raw/qcom_nandc.c
@@ -3033,12 +3033,12 @@ static int qcom_check_op(struct nand_chip *chip,
switch (instr->type) {
case NAND_OP_CMD_INSTR:
- if (instr->ctx.cmd.opcode != NAND_CMD_RESET ||
- instr->ctx.cmd.opcode != NAND_CMD_READID ||
- instr->ctx.cmd.opcode != NAND_CMD_PARAM ||
- instr->ctx.cmd.opcode != NAND_CMD_ERASE1 ||
- instr->ctx.cmd.opcode != NAND_CMD_ERASE2 ||
- instr->ctx.cmd.opcode != NAND_CMD_STATUS ||
+ if (instr->ctx.cmd.opcode != NAND_CMD_RESET &&
+ instr->ctx.cmd.opcode != NAND_CMD_READID &&
+ instr->ctx.cmd.opcode != NAND_CMD_PARAM &&
+ instr->ctx.cmd.opcode != NAND_CMD_ERASE1 &&
+ instr->ctx.cmd.opcode != NAND_CMD_ERASE2 &&
+ instr->ctx.cmd.opcode != NAND_CMD_STATUS &&
instr->ctx.cmd.opcode != NAND_CMD_PAGEPROG)
return -ENOTSUPP;
break;