summaryrefslogtreecommitdiff
path: root/ipc/gatekeeper_ipc.h
diff options
context:
space:
mode:
authorNick Bray <ncbray@google.com>2018-06-20 15:51:19 -0700
committerNick Bray <ncbray@google.com>2018-07-26 15:01:35 -0700
commitdc27e3aaa7b2bc73fe97b6abc534ec689c72eb8d (patch)
tree662b2703907dc4d2cfddb5b13c101baf278e5eb7 /ipc/gatekeeper_ipc.h
parent5dc366caaa30e4228f99ab44c68cbd071e1c8a80 (diff)
downloadgatekeeper-dc27e3aaa7b2bc73fe97b6abc534ec689c72eb8d.tar.gz
Enable pre-upload clang formatting.
Also re-format the code with clang format. Bug: 110489128 Change-Id: I56075cab57be2d929d6481c92934fb94f839c81e
Diffstat (limited to 'ipc/gatekeeper_ipc.h')
-rw-r--r--ipc/gatekeeper_ipc.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/ipc/gatekeeper_ipc.h b/ipc/gatekeeper_ipc.h
index ed86419..086cf9c 100644
--- a/ipc/gatekeeper_ipc.h
+++ b/ipc/gatekeeper_ipc.h
@@ -18,11 +18,11 @@
#define GATEKEEPER_MAX_BUFFER_LENGTH 1024
enum gatekeeper_command {
- GK_REQ_SHIFT = 1,
- GK_RESP_BIT = 1,
+ GK_REQ_SHIFT = 1,
+ GK_RESP_BIT = 1,
- GK_ENROLL = (0 << GK_REQ_SHIFT),
- GK_VERIFY = (1 << GK_REQ_SHIFT),
+ GK_ENROLL = (0 << GK_REQ_SHIFT),
+ GK_VERIFY = (1 << GK_REQ_SHIFT),
};
/**
@@ -35,4 +35,3 @@ struct gatekeeper_message {
uint32_t cmd;
uint8_t payload[0];
};
-