summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/nand_s3c24xx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd/nand/nand_s3c24xx.c')
-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)