* [PATCH 1/1] mci: imx-esdhc: fix termination of statement
@ 2019-12-10 14:46 Hubert Feurstein
2019-12-11 8:49 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Hubert Feurstein @ 2019-12-10 14:46 UTC (permalink / raw)
To: barebox; +Cc: Hubert Feurstein
Use semicolon instead of comma to terminate statement.
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
---
drivers/mci/imx-esdhc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mci/imx-esdhc.c b/drivers/mci/imx-esdhc.c
index db3450a26..4f9fe2996 100644
--- a/drivers/mci/imx-esdhc.c
+++ b/drivers/mci/imx-esdhc.c
@@ -697,7 +697,7 @@ static int fsl_esdhc_probe(struct device_d *dev)
host->mci.card_present = esdhc_card_present;
host->mci.hw_dev = dev;
- dev->detect = fsl_esdhc_detect,
+ dev->detect = fsl_esdhc_detect;
rate = clk_get_rate(host->clk);
host->mci.f_min = rate >> 12;
--
2.24.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-12-11 8:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-10 14:46 [PATCH 1/1] mci: imx-esdhc: fix termination of statement Hubert Feurstein
2019-12-11 8:49 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox