[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1272637922-31418-1-git-send-email-nicolas.ferre@atmel.com>
Date: Fri, 30 Apr 2010 16:32:02 +0200
From: Nicolas Ferre <nicolas.ferre@...el.com>
To: haavard.skinnemoen@...el.com, linux-arm-kernel@...ts.infradead.org,
akpm@...ux-foundation.org, linux-mmc@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, kernel@...32linux.org,
Nicolas Ferre <nicolas.ferre@...el.com>
Subject: [PATCH] MMC: atmel-mci: fix in debugfs: response value printing
In debugfs, printing of command response reports resp[2]
twice: fix it to resp[3].
Signed-off-by: Nicolas Ferre <nicolas.ferre@...el.com>
---
drivers/mmc/host/atmel-mci.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c
index fd96ab9..1f0f30f 100644
--- a/drivers/mmc/host/atmel-mci.c
+++ b/drivers/mmc/host/atmel-mci.c
@@ -268,7 +268,7 @@ static int atmci_req_show(struct seq_file *s, void *v)
"CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
cmd->opcode, cmd->arg, cmd->flags,
cmd->resp[0], cmd->resp[1], cmd->resp[2],
- cmd->resp[2], cmd->error);
+ cmd->resp[3], cmd->error);
if (data)
seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
data->bytes_xfered, data->blocks,
@@ -278,7 +278,7 @@ static int atmci_req_show(struct seq_file *s, void *v)
"CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
stop->opcode, stop->arg, stop->flags,
stop->resp[0], stop->resp[1], stop->resp[2],
- stop->resp[2], stop->error);
+ stop->resp[3], stop->error);
}
spin_unlock_bh(&slot->host->lock);
--
1.5.6.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists