[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1293750484-1161-15-git-send-email-justinmattock@gmail.com>
Date: Thu, 30 Dec 2010 15:08:04 -0800
From: "Justin P. Mattock" <justinmattock@...il.com>
To: trivial@...nel.org
Cc: linux-m68k@...ts.linux-m68k.org, linux-kernel@...r.kernel.org,
netdev@...r.kernel.org, ivtv-devel@...vdriver.org,
linux-media@...r.kernel.org, linux-wireless@...r.kernel.org,
linux-scsi@...r.kernel.org,
spi-devel-general@...ts.sourceforge.net,
devel@...verdev.osuosl.org, linux-usb@...r.kernel.org,
"Justin P. Mattock" <justinmattock@...il.com>
Subject: [PATCH 15/15]drivers:spi:dw_spi.c Typo change diable to disable.
The below patch fixes a typo "diable" to "disable". Please let me know if this
is correct or not.
Signed-off-by: Justin P. Mattock <justinmattock@...il.com>
---
drivers/spi/dw_spi.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/spi/dw_spi.c b/drivers/spi/dw_spi.c
index 7c3cf21..a3a065f 100644
--- a/drivers/spi/dw_spi.c
+++ b/drivers/spi/dw_spi.c
@@ -910,12 +910,12 @@ int __devinit dw_spi_add_host(struct dw_spi *dws)
ret = init_queue(dws);
if (ret) {
dev_err(&master->dev, "problem initializing queue\n");
- goto err_diable_hw;
+ goto err_disable_hw;
}
ret = start_queue(dws);
if (ret) {
dev_err(&master->dev, "problem starting queue\n");
- goto err_diable_hw;
+ goto err_disable_hw;
}
spi_master_set_devdata(master, dws);
@@ -930,7 +930,7 @@ int __devinit dw_spi_add_host(struct dw_spi *dws)
err_queue_alloc:
destroy_queue(dws);
-err_diable_hw:
+err_disable_hw:
spi_enable_chip(dws, 0);
free_irq(dws->irq, dws);
err_free_master:
--
1.6.5.2.180.gc5b3e
--
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