am 9484bb01: Merge "Support KM_LONG_REP"

* commit '9484bb01af2dd680e501db031dbcf2a6ecba8e26':
  Support KM_LONG_REP
diff --git a/keystore/IKeystoreService.cpp b/keystore/IKeystoreService.cpp
index d58f5ec..f920095 100644
--- a/keystore/IKeystoreService.cpp
+++ b/keystore/IKeystoreService.cpp
@@ -219,7 +219,8 @@
             out->writeInt32(param.integer);
             break;
         }
-        case KM_LONG: {
+        case KM_LONG:
+        case KM_LONG_REP: {
             out->writeInt32(param.tag);
             out->writeInt64(param.long_integer);
             break;
@@ -270,7 +271,8 @@
             *out = keymaster_param_int(tag, value);
             break;
         }
-        case KM_LONG: {
+        case KM_LONG:
+        case KM_LONG_REP: {
             uint64_t value = in.readInt64();
             *out = keymaster_param_long(tag, value);
             break;