Merge tag 'sirf-iobrg2regmap-for-4.2' of git://git.kernel.org/pub/scm/linux/kernel...
[firefly-linux-kernel-4.4.55.git] / crypto / asymmetric_keys / rsa.c
index 459cf97a75e2e223798e2cd157a60bf048f01117..508b57b77474c4ef9da5481584fdecf3b9ff235d 100644 (file)
@@ -120,7 +120,7 @@ static int RSAVP1(const struct public_key *key, MPI s, MPI *_m)
 /*
  * Integer to Octet String conversion [RFC3447 sec 4.1]
  */
-static int RSA_I2OSP(MPI x, size_t xLen, u8 **_X)
+static int RSA_I2OSP(MPI x, size_t xLen, u8 **pX)
 {
        unsigned X_size, x_size;
        int X_sign;
@@ -147,7 +147,7 @@ static int RSA_I2OSP(MPI x, size_t xLen, u8 **_X)
                return -EBADMSG;
        }
 
-       *_X = X;
+       *pX = X;
        return 0;
 }