提交 08645fdc 编写于 作者: T Tomoya MORINAGA 提交者: Vinod Koul

pch_dma: modify for checkpatch

Fix checkpatch warnings.
Signed-off-by: NTomoya MORINAGA <tomoya-linux@dsn.okisemi.com>
Signed-off-by: NVinod Koul <vinod.koul@intel.com>
上级 c8fcba60
...@@ -138,7 +138,8 @@ struct pch_dma { ...@@ -138,7 +138,8 @@ struct pch_dma {
#define dma_writel(pd, name, val) \ #define dma_writel(pd, name, val) \
writel((val), (pd)->membase + PCH_DMA_##name) writel((val), (pd)->membase + PCH_DMA_##name)
static inline struct pch_dma_desc *to_pd_desc(struct dma_async_tx_descriptor *txd) static inline
struct pch_dma_desc *to_pd_desc(struct dma_async_tx_descriptor *txd)
{ {
return container_of(txd, struct pch_dma_desc, txd); return container_of(txd, struct pch_dma_desc, txd);
} }
...@@ -163,13 +164,15 @@ static inline struct device *chan2parent(struct dma_chan *chan) ...@@ -163,13 +164,15 @@ static inline struct device *chan2parent(struct dma_chan *chan)
return chan->dev->device.parent; return chan->dev->device.parent;
} }
static inline struct pch_dma_desc *pdc_first_active(struct pch_dma_chan *pd_chan) static inline
struct pch_dma_desc *pdc_first_active(struct pch_dma_chan *pd_chan)
{ {
return list_first_entry(&pd_chan->active_list, return list_first_entry(&pd_chan->active_list,
struct pch_dma_desc, desc_node); struct pch_dma_desc, desc_node);
} }
static inline struct pch_dma_desc *pdc_first_queued(struct pch_dma_chan *pd_chan) static inline
struct pch_dma_desc *pdc_first_queued(struct pch_dma_chan *pd_chan)
{ {
return list_first_entry(&pd_chan->queue, return list_first_entry(&pd_chan->queue,
struct pch_dma_desc, desc_node); struct pch_dma_desc, desc_node);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册