Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: nitrox - Remove cfb Remove the unused CFB implementation.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

-19
-19
drivers/crypto/cavium/nitrox/nitrox_skcipher.c
··· 421 421 .exit = nitrox_skcipher_exit, 422 422 }, { 423 423 .base = { 424 - .cra_name = "cfb(aes)", 425 - .cra_driver_name = "n5_cfb(aes)", 426 - .cra_priority = PRIO, 427 - .cra_flags = CRYPTO_ALG_ASYNC | CRYPTO_ALG_ALLOCATES_MEMORY, 428 - .cra_blocksize = AES_BLOCK_SIZE, 429 - .cra_ctxsize = sizeof(struct nitrox_crypto_ctx), 430 - .cra_alignmask = 0, 431 - .cra_module = THIS_MODULE, 432 - }, 433 - .min_keysize = AES_MIN_KEY_SIZE, 434 - .max_keysize = AES_MAX_KEY_SIZE, 435 - .ivsize = AES_BLOCK_SIZE, 436 - .setkey = nitrox_aes_setkey, 437 - .encrypt = nitrox_aes_encrypt, 438 - .decrypt = nitrox_aes_decrypt, 439 - .init = nitrox_skcipher_init, 440 - .exit = nitrox_skcipher_exit, 441 - }, { 442 - .base = { 443 424 .cra_name = "xts(aes)", 444 425 .cra_driver_name = "n5_xts(aes)", 445 426 .cra_priority = PRIO,