diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2022-09-12 10:03:59 -0600 |
---|---|---|
committer | Mathieu Poirier <mathieu.poirier@linaro.org> | 2022-09-12 10:12:25 -0600 |
commit | 5fc1531dd771cd1481116a66f992a190e01efce6 (patch) | |
tree | b784f680c172c0c773bc81e6b4bc4885b8cb6598 /drivers/hwtracing/ptt | |
parent | 366317eae983a0d96aeed78ad219b9c4ed2a719a (diff) | |
download | linux-stable-5fc1531dd771cd1481116a66f992a190e01efce6.tar.gz linux-stable-5fc1531dd771cd1481116a66f992a190e01efce6.tar.bz2 linux-stable-5fc1531dd771cd1481116a66f992a190e01efce6.zip |
hwtracing: hisi_ptt: Fix up for "iommu/dma: Make header private"
drivers/hwtracing/ptt/hisi_ptt.c:13:10: fatal error: linux/dma-iommu.h: No such file or directory
13 | #include <linux/dma-iommu.h>
| ^~~~~~~~~~~~~~~~~~~
Caused by:
commit ff0de066b463 ("hwtracing: hisi_ptt: Add trace function support for HiSilicon PCIe Tune and Trace device")
interacting with:
commit f2042ed21da7 ("iommu/dma: Make header private")
from the iommu tree.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Robin Murphy <robin.murphy@arm.com>
Acked-by: Yicong Yang <yangyicong@hisilicon.com>
[Fixed subject line and added changelog text]
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Diffstat (limited to 'drivers/hwtracing/ptt')
-rw-r--r-- | drivers/hwtracing/ptt/hisi_ptt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/hwtracing/ptt/hisi_ptt.c b/drivers/hwtracing/ptt/hisi_ptt.c index 666a0f14b6c4..5d5526aa60c4 100644 --- a/drivers/hwtracing/ptt/hisi_ptt.c +++ b/drivers/hwtracing/ptt/hisi_ptt.c @@ -10,7 +10,6 @@ #include <linux/bitops.h> #include <linux/cpuhotplug.h> #include <linux/delay.h> -#include <linux/dma-iommu.h> #include <linux/dma-mapping.h> #include <linux/interrupt.h> #include <linux/io.h> |