mtd: gpmi: use DMA channel 0 for all the nand chips
We only have one DMA channel : the channel 0. Use DMA channel 0 to access all the nand chips. Signed-off-by: Huang Shijie <b32955@freescale.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
d159d8b707
commit
a7c12d016a
@ -357,9 +357,8 @@ int common_nfc_set_geometry(struct gpmi_nand_data *this)
|
|||||||
|
|
||||||
struct dma_chan *get_dma_chan(struct gpmi_nand_data *this)
|
struct dma_chan *get_dma_chan(struct gpmi_nand_data *this)
|
||||||
{
|
{
|
||||||
int chipnr = this->current_chip;
|
/* We use the DMA channel 0 to access all the nand chips. */
|
||||||
|
return this->dma_chans[0];
|
||||||
return this->dma_chans[chipnr];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Can we use the upper's buffer directly for DMA? */
|
/* Can we use the upper's buffer directly for DMA? */
|
||||||
|
Loading…
Reference in New Issue
Block a user