Loading drivers/dma/imx-sdma.c +2 −2 Original line number Diff line number Diff line Loading @@ -1157,7 +1157,7 @@ static int sdma_alloc_bd(struct sdma_desc *desc) { int ret = 0; desc->bd = dma_pool_alloc(desc->sdmac->bd_pool, GFP_ATOMIC, desc->bd = dma_pool_alloc(desc->sdmac->bd_pool, GFP_NOWAIT, &desc->bd_phys); if (!desc->bd) { ret = -ENOMEM; Loading Loading
drivers/dma/imx-sdma.c +2 −2 Original line number Diff line number Diff line Loading @@ -1157,7 +1157,7 @@ static int sdma_alloc_bd(struct sdma_desc *desc) { int ret = 0; desc->bd = dma_pool_alloc(desc->sdmac->bd_pool, GFP_ATOMIC, desc->bd = dma_pool_alloc(desc->sdmac->bd_pool, GFP_NOWAIT, &desc->bd_phys); if (!desc->bd) { ret = -ENOMEM; Loading