summaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2016-04-27 07:39:09 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2016-04-28 16:40:14 +0200
commit005cd22b30caa2421f8d142eef4df18f191d7415 (patch)
tree0859f234d6ff3390e49ab92a1705aa80dcf485f3 /drivers/ata
parent4e3e8e6d1905c01e7324b0f92e358e2d1fe1d1a6 (diff)
downloadbarebox-005cd22b30caa2421f8d142eef4df18f191d7415.tar.gz
barebox-005cd22b30caa2421f8d142eef4df18f191d7415.tar.xz
sata-imx: Fix a typo
It looks like comma operator was accidentaly used instead of regular semicolon. Fix this to avoid confusing future readers of the code. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/sata-imx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata-imx.c b/drivers/ata/sata-imx.c
index 6a601956db..7b8036bbf3 100644
--- a/drivers/ata/sata-imx.c
+++ b/drivers/ata/sata-imx.c
@@ -112,7 +112,7 @@ static int imx_sata_probe(struct device_d *dev)
imx_ahci->ahci.dev = dev;
dev->priv = &imx_ahci->ahci;
- dev->info = ahci_info,
+ dev->info = ahci_info;
ret = ahci_add_host(&imx_ahci->ahci);
if (ret)