diff options
author | Helge Deller <deller@gmx.de> | 2023-08-30 11:49:57 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2023-08-31 21:42:42 +0200 |
commit | c1ebb94071cb4455177bafa619423acb3494d15d (patch) | |
tree | 601f35897cb89af025223ee1c49c3172423acef4 /drivers/parisc/iommu-helpers.h | |
parent | parisc: sba: Fix compile warning wrt list of SBA devices (diff) | |
download | linux-c1ebb94071cb4455177bafa619423acb3494d15d.tar.xz linux-c1ebb94071cb4455177bafa619423acb3494d15d.zip |
parisc: sba-iommu: Fix sparse warnigs
Fix sparse warnings, as pdir is __le64 *.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/parisc/iommu-helpers.h')
-rw-r--r-- | drivers/parisc/iommu-helpers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parisc/iommu-helpers.h b/drivers/parisc/iommu-helpers.h index 0905be256de0..a00c38b6224a 100644 --- a/drivers/parisc/iommu-helpers.h +++ b/drivers/parisc/iommu-helpers.h @@ -14,13 +14,13 @@ static inline unsigned int iommu_fill_pdir(struct ioc *ioc, struct scatterlist *startsg, int nents, unsigned long hint, - void (*iommu_io_pdir_entry)(u64 *, space_t, unsigned long, + void (*iommu_io_pdir_entry)(__le64 *, space_t, unsigned long, unsigned long)) { struct scatterlist *dma_sg = startsg; /* pointer to current DMA */ unsigned int n_mappings = 0; unsigned long dma_offset = 0, dma_len = 0; - u64 *pdirp = NULL; + __le64 *pdirp = NULL; /* Horrible hack. For efficiency's sake, dma_sg starts one * entry below the true start (it is immediately incremented |