summaryrefslogtreecommitdiffstats
path: root/include/hardware/hw_auth_token.h
diff options
context:
space:
mode:
authorShawn Willden <swillden@google.com>2015-04-10 04:33:40 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-10 04:33:40 +0000
commitb2d893d2341392272e9375b57bc4d8e702ec58e3 (patch)
tree509a8257dcee6e23e38f8b279bf5b2fc445a5df6 /include/hardware/hw_auth_token.h
parentf62e84ae4a38f1d61796eeba6529f0589022cf06 (diff)
parent2d19dbfed66adff49d58231483a887c6dd63a7b8 (diff)
downloadhardware_libhardware-b2d893d2341392272e9375b57bc4d8e702ec58e3.zip
hardware_libhardware-b2d893d2341392272e9375b57bc4d8e702ec58e3.tar.gz
hardware_libhardware-b2d893d2341392272e9375b57bc4d8e702ec58e3.tar.bz2
am 2d19dbfe: am 5d8d3981: Merge "Start authenticator numbering from 1, instead of 2."
* commit '2d19dbfed66adff49d58231483a887c6dd63a7b8': Start authenticator numbering from 1, instead of 2.
Diffstat (limited to 'include/hardware/hw_auth_token.h')
-rw-r--r--include/hardware/hw_auth_token.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hardware/hw_auth_token.h b/include/hardware/hw_auth_token.h
index dcb4089..2740758 100644
--- a/include/hardware/hw_auth_token.h
+++ b/include/hardware/hw_auth_token.h
@@ -27,8 +27,8 @@ const uint8_t HW_AUTH_TOKEN_VERSION = 0;
typedef enum {
HW_AUTH_NONE = 0,
- HW_AUTH_PASSWORD = 1 << 1,
- HW_AUTH_FINGERPRINT = 1 << 2,
+ HW_AUTH_PASSWORD = 1 << 0,
+ HW_AUTH_FINGERPRINT = 1 << 1,
// Additional entries should be powers of 2.
HW_AUTH_ANY = UINT32_MAX,
} hw_authenticator_type_t;