summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-12-11 08:07:47 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-12-11 08:07:47 +0100
commit7413dc425800e3b4ef8aa83e0bb344ef913a739a (patch)
tree6776e0da168b1d1f6b8a285ec00999c21c27edca /drivers
parentd15dceb2d03ffe541857e7543fe4a19fe58cf1e8 (diff)
downloadbarebox-7413dc425800e3b4ef8aa83e0bb344ef913a739a.tar.gz
barebox-7413dc425800e3b4ef8aa83e0bb344ef913a739a.tar.xz
treewide: Fix typo collumn -> column
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/nand/nand_s3c24xx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/nand/nand_s3c24xx.c b/drivers/mtd/nand/nand_s3c24xx.c
index bee037b96d..37bba39260 100644
--- a/drivers/mtd/nand/nand_s3c24xx.c
+++ b/drivers/mtd/nand/nand_s3c24xx.c
@@ -516,12 +516,12 @@ static void __nand_boot_init wait_for_completion(void __iomem *host)
*
* Uses the offset of the page to generate an page address into the NAND. This
* differs when using a 512 byte or 2048 bytes per page NAND.
- * The collumn part of the page address to be generated is always forced to '0'.
+ * The column part of the page address to be generated is always forced to '0'.
*/
static void __nand_boot_init nfc_addr(void __iomem *host, uint32_t offs,
int ps, int c)
{
- send_addr(host, 0); /* collumn part 1 */
+ send_addr(host, 0); /* column part 1 */
if (ps == 512) {
send_addr(host, offs >> 9);
@@ -529,7 +529,7 @@ static void __nand_boot_init nfc_addr(void __iomem *host, uint32_t offs,
if (c > 3)
send_addr(host, offs >> 25);
} else {
- send_addr(host, 0); /* collumn part 2 */
+ send_addr(host, 0); /* column part 2 */
send_addr(host, offs >> 11);
send_addr(host, offs >> 19);
if (c > 4)