diff options
| author | Ben Gardiner <[email protected]> | 2011-05-24 10:18:34 -0400 |
|---|---|---|
| committer | Scott Wood <[email protected]> | 2011-07-01 15:56:51 -0500 |
| commit | bee038e9fe2fe0fcd53e89aac32fb8948555c040 (patch) | |
| tree | 9d79f190800e97219424cbf6b06ec7b2b1a37891 | |
| parent | 2c4ed7d2506621574284ee66da27ce88b7c21a06 (diff) | |
nand_base: trivial: fix comment read/write comment
Replace an incorrect 'read' with 'write' in a comment.
Signed-off-by: Ben Gardiner <[email protected]>
Acked-by: Detlev Zundel <[email protected]>
Signed-off-by: Scott Wood <[email protected]>
| -rw-r--r-- | drivers/mtd/nand/nand_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index 52f8575aac6..1a95a91318f 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -1950,7 +1950,7 @@ static int nand_write(struct mtd_info *mtd, loff_t to, size_t len, struct nand_chip *chip = mtd->priv; int ret; - /* Do not allow reads past end of device */ + /* Do not allow writes past end of device */ if ((to + len) > mtd->size) return -EINVAL; if (!len) |
