This patch fix the following build warning:
drivers/block/cryptoloop.c:46:8: warning: variable 'cipher' set but not used [-Wunused-but-set-variable]
Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
        int cipher_len;
        int mode_len;
        char cms[LO_NAME_SIZE];                 /* cipher-mode string */
-       char *cipher;
        char *mode;
        char *cmsp = cms;                       /* c-m string pointer */
        struct crypto_skcipher *tfm;
        strncpy(cms, info->lo_crypt_name, LO_NAME_SIZE);
        cms[LO_NAME_SIZE - 1] = 0;
 
-       cipher = cmsp;
        cipher_len = strcspn(cmsp, "-");
 
        mode = cmsp + cipher_len;