Skip to content

Commit

Permalink
core: fix flag formatting
Browse files Browse the repository at this point in the history
checkpatch suggests using the BIT macro instead of a left shift.

Signed-off-by: Hernan Gatta <[email protected]>
Reviewed-by: Jerome Forissier <[email protected]>
  • Loading branch information
HernanGatta committed Oct 18, 2020
1 parent ed30b6c commit 5d12120
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions core/arch/arm/include/sm/optee_smc.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#ifndef OPTEE_SMC_H
#define OPTEE_SMC_H

#include <util.h>

/*
* This file is exported by OP-TEE and is in kept in sync between secure
* world and normal world kernel driver. We're following ARM SMC Calling
Expand Down Expand Up @@ -264,20 +266,20 @@
* a2-7 Preserved
*/
/* Normal world works as a uniprocessor system */
#define OPTEE_SMC_NSEC_CAP_UNIPROCESSOR (1 << 0)
#define OPTEE_SMC_NSEC_CAP_UNIPROCESSOR BIT(0)
/* Secure world has reserved shared memory for normal world to use */
#define OPTEE_SMC_SEC_CAP_HAVE_RESERVED_SHM (1 << 0)
#define OPTEE_SMC_SEC_CAP_HAVE_RESERVED_SHM BIT(0)
/* Secure world can communicate via previously unregistered shared memory */
#define OPTEE_SMC_SEC_CAP_UNREGISTERED_SHM (1 << 1)
#define OPTEE_SMC_SEC_CAP_UNREGISTERED_SHM BIT(1)
/*
* Secure world supports commands "register/unregister shared memory",
* secure world accepts command buffers located in any parts of non-secure RAM
*/
#define OPTEE_SMC_SEC_CAP_DYNAMIC_SHM (1 << 2)
#define OPTEE_SMC_SEC_CAP_DYNAMIC_SHM BIT(2)
/* Secure world is built with virtualization support */
#define OPTEE_SMC_SEC_CAP_VIRTUALIZATION (1 << 3)
#define OPTEE_SMC_SEC_CAP_VIRTUALIZATION BIT(3)
/* Secure world supports Shared Memory with a NULL reference */
#define OPTEE_SMC_SEC_CAP_MEMREF_NULL (1 << 4)
#define OPTEE_SMC_SEC_CAP_MEMREF_NULL BIT(4)

#define OPTEE_SMC_FUNCID_EXCHANGE_CAPABILITIES 9
#define OPTEE_SMC_EXCHANGE_CAPABILITIES \
Expand Down

0 comments on commit 5d12120

Please sign in to comment.