[PATCH 4/6] uacce: Don't use BIT() macro in UAPI headers

From: Joe Richey
Date: Thu May 20 2021 - 08:09:29 EST


From: Joe Richey <joerichey@xxxxxxxxxx>

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@xxxxxxxxxx>
---
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