rc is never read afterwards anyway, so no point in setting it. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- drivers/mci/mci-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mci/mci-core.c b/drivers/mci/mci-core.c index 8c08a4f61f63..a1e27b954375 100644 --- a/drivers/mci/mci-core.c +++ b/drivers/mci/mci-core.c @@ -1722,8 +1722,8 @@ static int mci_register_partition(struct mci_part *part) rc = parse_partition_table(&part->blk); if (rc != 0) { + /* Lack of partition table is unusual, but not a failure */ dev_warn(&mci->dev, "No partition table found\n"); - rc = 0; /* it's not a failure */ } if (np) { -- 2.30.2