|
@@ -70,7 +70,6 @@ static struct crypto_alg des_alg = {
|
|
|
.cra_blocksize = DES_BLOCK_SIZE,
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(des_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.cipher = {
|
|
|
.cia_min_keysize = DES_KEY_SIZE,
|
|
@@ -163,7 +162,6 @@ static struct crypto_alg ecb_des_alg = {
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_type = &crypto_blkcipher_type,
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(ecb_des_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.blkcipher = {
|
|
|
.min_keysize = DES_KEY_SIZE,
|
|
@@ -206,7 +204,6 @@ static struct crypto_alg cbc_des_alg = {
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_type = &crypto_blkcipher_type,
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(cbc_des_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.blkcipher = {
|
|
|
.min_keysize = DES_KEY_SIZE,
|
|
@@ -271,7 +268,6 @@ static struct crypto_alg des3_alg = {
|
|
|
.cra_blocksize = DES_BLOCK_SIZE,
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(des3_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.cipher = {
|
|
|
.cia_min_keysize = DES3_KEY_SIZE,
|
|
@@ -314,8 +310,6 @@ static struct crypto_alg ecb_des3_alg = {
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_type = &crypto_blkcipher_type,
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(
|
|
|
- ecb_des3_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.blkcipher = {
|
|
|
.min_keysize = DES3_KEY_SIZE,
|
|
@@ -358,8 +352,6 @@ static struct crypto_alg cbc_des3_alg = {
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_type = &crypto_blkcipher_type,
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(
|
|
|
- cbc_des3_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.blkcipher = {
|
|
|
.min_keysize = DES3_KEY_SIZE,
|
|
@@ -452,7 +444,6 @@ static struct crypto_alg ctr_des_alg = {
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_type = &crypto_blkcipher_type,
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(ctr_des_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.blkcipher = {
|
|
|
.min_keysize = DES_KEY_SIZE,
|
|
@@ -496,7 +487,6 @@ static struct crypto_alg ctr_des3_alg = {
|
|
|
.cra_ctxsize = sizeof(struct s390_des_ctx),
|
|
|
.cra_type = &crypto_blkcipher_type,
|
|
|
.cra_module = THIS_MODULE,
|
|
|
- .cra_list = LIST_HEAD_INIT(ctr_des3_alg.cra_list),
|
|
|
.cra_u = {
|
|
|
.blkcipher = {
|
|
|
.min_keysize = DES3_KEY_SIZE,
|