Your ROOT_URL in app.ini is https://gitea.jennalody.de/ but you are visiting https://gitea.jenslody.de/jenna/kernel_samsung_sm7125/commit/b52020e822e445171e09dd96c4ec5586f8b9f0a9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

iommu: Fix multiple definitions of msm_dma_unmap_sg_attrs

Add static and inline to msm_dma_unmap_sg_attrs to fix multiple
definition compilation errors when CONFIG_QCOM_LAZY_MAP is not
selected.

Change-Id: I2aa56d85459e7144d279521905d0cb3225b39648
Signed-off-by: Vijayanand Jitta <vjitta@codeaurora.org>
tirimbino
Vijayanand Jitta 6 years ago committed by Gerrit - the friendly Code Review server
parent 3f815bfee7
commit b52020e822
  1. 7
      include/linux/msm_dma_iommu_mapping.h

@ -105,9 +105,10 @@ static inline void msm_dma_unmap_sg(struct device *dev,
{
}
void msm_dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sgl,
int nents, enum dma_data_direction dir,
struct dma_buf *dma_buf, unsigned long attrs)
static inline void msm_dma_unmap_sg_attrs(struct device *dev,
struct scatterlist *sgl,
int nents, enum dma_data_direction dir,
struct dma_buf *dma_buf, unsigned long attrs)
{
}

Loading…
Cancel
Save