aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2010-05-25 01:22:51 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-08-10 19:29:15 -0400
commitdb9ebb7cd0b6329c46ba3cc326d6414647fcfe6b (patch)
treeecb412a00139d50b39daf4ba18dd5deaa2b6cea8 /drivers/mtd/nand
parent7cfffac06ca0d45040db228ce1835f5cf8623916 (diff)
mtd/nand_base: fix kernel-doc warnings & typos
Fix mtd/nand_base.c kernel-doc warnings and typos. Warning(drivers/mtd/nand/nand_base.c:893): No description found for parameter 'mtd' Warning(drivers/mtd/nand/nand_base.c:893): No description found for parameter 'ofs' Warning(drivers/mtd/nand/nand_base.c:893): No description found for parameter 'len' Warning(drivers/mtd/nand/nand_base.c:893): No description found for parameter 'invert' Warning(drivers/mtd/nand/nand_base.c:930): No description found for parameter 'mtd' Warning(drivers/mtd/nand/nand_base.c:930): No description found for parameter 'ofs' Warning(drivers/mtd/nand/nand_base.c:930): No description found for parameter 'len' Warning(drivers/mtd/nand/nand_base.c:987): No description found for parameter 'mtd' Warning(drivers/mtd/nand/nand_base.c:987): No description found for parameter 'ofs' Warning(drivers/mtd/nand/nand_base.c:987): No description found for parameter 'len' Warning(drivers/mtd/nand/nand_base.c:2087): No description found for parameter 'len' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/nand_base.c39
1 files changed, 20 insertions, 19 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 16a1714df008..a3c7473dd409 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -889,17 +889,17 @@ static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
889} 889}
890 890
891/** 891/**
892 * __nand_unlock - [REPLACABLE] unlocks specified locked blockes 892 * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks
893 * 893 *
894 * @param mtd - mtd info 894 * @mtd: mtd info
895 * @param ofs - offset to start unlock from 895 * @ofs: offset to start unlock from
896 * @param len - length to unlock 896 * @len: length to unlock
897 * @invert - when = 0, unlock the range of blocks within the lower and 897 * @invert: when = 0, unlock the range of blocks within the lower and
898 * upper boundary address 898 * upper boundary address
899 * whne = 1, unlock the range of blocks outside the boundaries 899 * when = 1, unlock the range of blocks outside the boundaries
900 * of the lower and upper boundary address 900 * of the lower and upper boundary address
901 * 901 *
902 * @return - unlock status 902 * return - unlock status
903 */ 903 */
904static int __nand_unlock(struct mtd_info *mtd, loff_t ofs, 904static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
905 uint64_t len, int invert) 905 uint64_t len, int invert)
@@ -931,13 +931,13 @@ static int __nand_unlock(struct mtd_info *mtd, loff_t ofs,
931} 931}
932 932
933/** 933/**
934 * nand_unlock - [REPLACABLE] unlocks specified locked blockes 934 * nand_unlock - [REPLACEABLE] unlocks specified locked blocks
935 * 935 *
936 * @param mtd - mtd info 936 * @mtd: mtd info
937 * @param ofs - offset to start unlock from 937 * @ofs: offset to start unlock from
938 * @param len - length to unlock 938 * @len: length to unlock
939 * 939 *
940 * @return - unlock status 940 * return - unlock status
941 */ 941 */
942int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) 942int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
943{ 943{
@@ -982,16 +982,16 @@ out:
982} 982}
983 983
984/** 984/**
985 * nand_lock - [REPLACABLE] locks all blockes present in the device 985 * nand_lock - [REPLACEABLE] locks all blocks present in the device
986 * 986 *
987 * @param mtd - mtd info 987 * @mtd: mtd info
988 * @param ofs - offset to start unlock from 988 * @ofs: offset to start unlock from
989 * @param len - length to unlock 989 * @len: length to unlock
990 * 990 *
991 * @return - lock status 991 * return - lock status
992 * 992 *
993 * This feature is not support in many NAND parts. 'Micron' NAND parts 993 * This feature is not supported in many NAND parts. 'Micron' NAND parts
994 * do have this feature, but it allows only to lock all blocks not for 994 * do have this feature, but it allows only to lock all blocks, not for
995 * specified range for block. 995 * specified range for block.
996 * 996 *
997 * Implementing 'lock' feature by making use of 'unlock', for now. 997 * Implementing 'lock' feature by making use of 'unlock', for now.
@@ -2093,6 +2093,7 @@ static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip,
2093 * nand_fill_oob - [Internal] Transfer client buffer to oob 2093 * nand_fill_oob - [Internal] Transfer client buffer to oob
2094 * @chip: nand chip structure 2094 * @chip: nand chip structure
2095 * @oob: oob data buffer 2095 * @oob: oob data buffer
2096 * @len: oob data write length
2096 * @ops: oob ops structure 2097 * @ops: oob ops structure
2097 */ 2098 */
2098static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, size_t len, 2099static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, size_t len,