mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 23:07:00 +00:00
mtd: nand: mxs_nand: use more precise function name
This function initializes DMA descriptors so mxs_nand_init_dma is more precise. It also frees up the rather generic name mxs_nand_init. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
This commit is contained in:
parent
931747e517
commit
0d4e9d8be2
1 changed files with 3 additions and 3 deletions
|
@ -1137,7 +1137,7 @@ int mxs_nand_alloc_buffers(struct mxs_nand_info *nand_info)
|
|||
/*
|
||||
* Initializes the NFC hardware.
|
||||
*/
|
||||
int mxs_nand_init(struct mxs_nand_info *info)
|
||||
int mxs_nand_init_dma(struct mxs_nand_info *info)
|
||||
{
|
||||
int i = 0, j, ret = 0;
|
||||
|
||||
|
@ -1212,7 +1212,7 @@ int mxs_nand_init_spl(struct nand_chip *nand)
|
|||
if (err)
|
||||
return err;
|
||||
|
||||
err = mxs_nand_init(nand_info);
|
||||
err = mxs_nand_init_dma(nand_info);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
|
@ -1259,7 +1259,7 @@ void board_nand_init(void)
|
|||
if (err)
|
||||
goto err1;
|
||||
|
||||
err = mxs_nand_init(nand_info);
|
||||
err = mxs_nand_init_dma(nand_info);
|
||||
if (err)
|
||||
goto err2;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue