Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca9cab3a authored by Joerg Roedel's avatar Joerg Roedel
Browse files

iommu/amd: Align DTE flag definitions



No functional change.

Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent 61289cba
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -295,8 +295,8 @@
#define IOMMU_PTE_IR (1ULL << 61)
#define IOMMU_PTE_IW (1ULL << 62)

#define DTE_FLAG_IOTLB	(0x01UL << 32)
#define DTE_FLAG_GV	(0x01ULL << 55)
#define DTE_FLAG_IOTLB	(1ULL << 32)
#define DTE_FLAG_GV	(1ULL << 55)
#define DTE_GLX_SHIFT	(56)
#define DTE_GLX_MASK	(3)