mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
mtd: nand: Fix some function description mismatches in core.c
In core.c, some function descriptions do not match function definitions. Just fix these mismatches. Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
This commit is contained in:
parent
6b6de6543d
commit
097ccca726
1 changed files with 6 additions and 6 deletions
|
@ -51,7 +51,7 @@ EXPORT_SYMBOL_GPL(nanddev_isbad);
|
||||||
/**
|
/**
|
||||||
* nanddev_markbad() - Mark a block as bad
|
* nanddev_markbad() - Mark a block as bad
|
||||||
* @nand: NAND device
|
* @nand: NAND device
|
||||||
* @block: block to mark bad
|
* @pos: position of the block to mark bad
|
||||||
*
|
*
|
||||||
* Mark a block bad. This function is updating the BBT if available and
|
* Mark a block bad. This function is updating the BBT if available and
|
||||||
* calls the low-level markbad hook (nand->ops->markbad()).
|
* calls the low-level markbad hook (nand->ops->markbad()).
|
||||||
|
@ -117,9 +117,9 @@ EXPORT_SYMBOL_GPL(nanddev_isreserved);
|
||||||
/**
|
/**
|
||||||
* nanddev_erase() - Erase a NAND portion
|
* nanddev_erase() - Erase a NAND portion
|
||||||
* @nand: NAND device
|
* @nand: NAND device
|
||||||
* @block: eraseblock to erase
|
* @pos: position of the block to erase
|
||||||
*
|
*
|
||||||
* Erases @block if it's not bad.
|
* Erases the block if it's not bad.
|
||||||
*
|
*
|
||||||
* Return: 0 in case of success, a negative error code otherwise.
|
* Return: 0 in case of success, a negative error code otherwise.
|
||||||
*/
|
*/
|
||||||
|
@ -179,11 +179,11 @@ EXPORT_SYMBOL_GPL(nanddev_mtd_erase);
|
||||||
/**
|
/**
|
||||||
* nanddev_init() - Initialize a NAND device
|
* nanddev_init() - Initialize a NAND device
|
||||||
* @nand: NAND device
|
* @nand: NAND device
|
||||||
* @memorg: NAND memory organization descriptor
|
|
||||||
* @ops: NAND device operations
|
* @ops: NAND device operations
|
||||||
|
* @owner: NAND device owner
|
||||||
*
|
*
|
||||||
* Initializes a NAND device object. Consistency checks are done on @memorg and
|
* Initializes a NAND device object. Consistency checks are done on @ops and
|
||||||
* @ops. Also takes care of initializing the BBT.
|
* @nand->memorg. Also takes care of initializing the BBT.
|
||||||
*
|
*
|
||||||
* Return: 0 in case of success, a negative error code otherwise.
|
* Return: 0 in case of success, a negative error code otherwise.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue