summaryrefslogtreecommitdiff
path: root/include/uapi/linux/virtio_iommu.h
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2020-05-23 00:01:13 +0200
committerDaniel Lezcano <daniel.lezcano@linaro.org>2020-05-23 00:01:13 +0200
commit1f422417945d08731e2915e0addb976f11b3a85a (patch)
tree7ef06daa2a34c3b527e3eb7a064bc4af0c9100c0 /include/uapi/linux/virtio_iommu.h
parentc177e2975430cec296aa52a0d413e447417d6cf9 (diff)
parent6d15120b282e49811a47f2f6d6b749d178be7e99 (diff)
Merge branch 'timers/drivers/timer-ti' into timers/drivers/next
Diffstat (limited to 'include/uapi/linux/virtio_iommu.h')
-rw-r--r--include/uapi/linux/virtio_iommu.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/uapi/linux/virtio_iommu.h b/include/uapi/linux/virtio_iommu.h
index 237e36a280cb..48e3c29223b5 100644
--- a/include/uapi/linux/virtio_iommu.h
+++ b/include/uapi/linux/virtio_iommu.h
@@ -18,24 +18,24 @@
#define VIRTIO_IOMMU_F_MMIO 5
struct virtio_iommu_range_64 {
- __le64 start;
- __le64 end;
+ __u64 start;
+ __u64 end;
};
struct virtio_iommu_range_32 {
- __le32 start;
- __le32 end;
+ __u32 start;
+ __u32 end;
};
struct virtio_iommu_config {
/* Supported page sizes */
- __le64 page_size_mask;
+ __u64 page_size_mask;
/* Supported IOVA range */
struct virtio_iommu_range_64 input_range;
/* Max domain ID size */
struct virtio_iommu_range_32 domain_range;
/* Probe buffer size */
- __le32 probe_size;
+ __u32 probe_size;
};
/* Request types */