[PATCH 4/6] uacce: Don't use BIT() macro in UAPI headers
Joe Richey
joerichey94 at gmail.com
Thu May 20 03:43:41 PDT 2021
From: Joe Richey <joerichey at google.com>
A previous patch [1] used the BIT() macro to define UACCE_DEV_SVA.
This macro is defined in the kernel but not in the UAPI headers.
[1] https://lore.kernel.org/patchwork/patch/11334877/
Signed-off-by: Joe Richey <joerichey at google.com>
---
include/uapi/misc/uacce/uacce.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/uapi/misc/uacce/uacce.h b/include/uapi/misc/uacce/uacce.h
index cc7185678f47..a404ec40e000 100644
--- a/include/uapi/misc/uacce/uacce.h
+++ b/include/uapi/misc/uacce/uacce.h
@@ -23,7 +23,7 @@
* Support PASID
* Support device page faults (PCI PRI or SMMU Stall)
*/
-#define UACCE_DEV_SVA BIT(0)
+#define UACCE_DEV_SVA (1 << 0)
/**
* enum uacce_qfrt: queue file region type
--
2.31.1
More information about the linux-arm-kernel
mailing list