Почему dmaengine_prep_slave_sg возвращает NULL? - PullRequest
0 голосов
/ 28 апреля 2020
// dmaengine.h

static inline struct dma_async_tx_descriptor *dmaengine_prep_slave_sg(
    struct dma_chan *chan, struct scatterlist *sgl, unsigned int sg_len,
    enum dma_transfer_direction dir, unsigned long flags)
{
    if (!chan || !chan->device || !chan->device->device_prep_slave_sg)
        return NULL;

    return chan->device->device_prep_slave_sg(chan, sgl, sg_len,
                          dir, flags, NULL);
}

Когда или почему dmaengine_prep_slave_sg может вернуть NULL, если все аргументы существуют? Я добавлю код или поток логики c, если вам нужно.

...