include: uapi: fix spcom.h using bitops

The include file <linux/bitops.h> is not available on user space.
remove it from the spcom.h uapi file.

Change-Id: I1a2ea14a4fc1154b63776e83909389cc73398f7d
Signed-off-by: Amir Samuelov <amirs@codeaurora.org>
This commit is contained in:
Amir Samuelov 2015-12-06 11:58:26 +02:00 committed by David Keitel
parent 349d3d0dbe
commit cd1949d4e2

View file

@ -14,7 +14,9 @@
#define _UAPI_SPCOM_H_ #define _UAPI_SPCOM_H_
#include <linux/types.h> /* uint32_t, bool */ #include <linux/types.h> /* uint32_t, bool */
#include <linux/bitops.h> /* BIT() */ #ifndef BIT
#define BIT(x) (1 << x)
#endif
/** /**
* @brief - Secure Processor Communication interface to user space spcomlib. * @brief - Secure Processor Communication interface to user space spcomlib.