From 71596e1a169a5a80bdc415cc928fb19b6688f50b Mon Sep 17 00:00:00 2001 From: rjkm Date: Wed, 23 Apr 2025 01:17:19 +0200 Subject: [PATCH] Remove mci command error warning. Leave handling to caller. --- ddbridge/ddbridge-mci.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ddbridge/ddbridge-mci.c b/ddbridge/ddbridge-mci.c index 7193768..ec331f7 100644 --- a/ddbridge/ddbridge-mci.c +++ b/ddbridge/ddbridge-mci.c @@ -170,10 +170,6 @@ int ddb_mci_cmd_link(struct ddb_link *link, (u32 *)result, sizeof(*result)/sizeof(u32)); mutex_unlock(&link->mci_lock); - if (command && result && (result->status & 0x80)) - dev_warn(link->dev->dev, - "mci_command 0x%02x, error=0x%02x\n", - command->command, result->status); return stat; }