@@ -1283,7 +1283,6 @@ static struct ahash_engine_alg algs_md5[] = {
1283
1283
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1284
1284
.cra_blocksize = MD5_HMAC_BLOCK_SIZE ,
1285
1285
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1286
- .cra_alignmask = 3 ,
1287
1286
.cra_init = stm32_hash_cra_init ,
1288
1287
.cra_exit = stm32_hash_cra_exit ,
1289
1288
.cra_module = THIS_MODULE ,
@@ -1313,7 +1312,6 @@ static struct ahash_engine_alg algs_md5[] = {
1313
1312
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1314
1313
.cra_blocksize = MD5_HMAC_BLOCK_SIZE ,
1315
1314
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1316
- .cra_alignmask = 3 ,
1317
1315
.cra_init = stm32_hash_cra_hmac_init ,
1318
1316
.cra_exit = stm32_hash_cra_exit ,
1319
1317
.cra_module = THIS_MODULE ,
@@ -1345,7 +1343,6 @@ static struct ahash_engine_alg algs_sha1[] = {
1345
1343
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1346
1344
.cra_blocksize = SHA1_BLOCK_SIZE ,
1347
1345
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1348
- .cra_alignmask = 3 ,
1349
1346
.cra_init = stm32_hash_cra_init ,
1350
1347
.cra_exit = stm32_hash_cra_exit ,
1351
1348
.cra_module = THIS_MODULE ,
@@ -1375,7 +1372,6 @@ static struct ahash_engine_alg algs_sha1[] = {
1375
1372
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1376
1373
.cra_blocksize = SHA1_BLOCK_SIZE ,
1377
1374
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1378
- .cra_alignmask = 3 ,
1379
1375
.cra_init = stm32_hash_cra_hmac_init ,
1380
1376
.cra_exit = stm32_hash_cra_exit ,
1381
1377
.cra_module = THIS_MODULE ,
@@ -1407,7 +1403,6 @@ static struct ahash_engine_alg algs_sha224[] = {
1407
1403
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1408
1404
.cra_blocksize = SHA224_BLOCK_SIZE ,
1409
1405
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1410
- .cra_alignmask = 3 ,
1411
1406
.cra_init = stm32_hash_cra_init ,
1412
1407
.cra_exit = stm32_hash_cra_exit ,
1413
1408
.cra_module = THIS_MODULE ,
@@ -1437,7 +1432,6 @@ static struct ahash_engine_alg algs_sha224[] = {
1437
1432
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1438
1433
.cra_blocksize = SHA224_BLOCK_SIZE ,
1439
1434
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1440
- .cra_alignmask = 3 ,
1441
1435
.cra_init = stm32_hash_cra_hmac_init ,
1442
1436
.cra_exit = stm32_hash_cra_exit ,
1443
1437
.cra_module = THIS_MODULE ,
@@ -1469,7 +1463,6 @@ static struct ahash_engine_alg algs_sha256[] = {
1469
1463
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1470
1464
.cra_blocksize = SHA256_BLOCK_SIZE ,
1471
1465
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1472
- .cra_alignmask = 3 ,
1473
1466
.cra_init = stm32_hash_cra_init ,
1474
1467
.cra_exit = stm32_hash_cra_exit ,
1475
1468
.cra_module = THIS_MODULE ,
@@ -1499,7 +1492,6 @@ static struct ahash_engine_alg algs_sha256[] = {
1499
1492
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1500
1493
.cra_blocksize = SHA256_BLOCK_SIZE ,
1501
1494
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1502
- .cra_alignmask = 3 ,
1503
1495
.cra_init = stm32_hash_cra_hmac_init ,
1504
1496
.cra_exit = stm32_hash_cra_exit ,
1505
1497
.cra_module = THIS_MODULE ,
@@ -1531,7 +1523,6 @@ static struct ahash_engine_alg algs_sha384_sha512[] = {
1531
1523
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1532
1524
.cra_blocksize = SHA384_BLOCK_SIZE ,
1533
1525
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1534
- .cra_alignmask = 3 ,
1535
1526
.cra_init = stm32_hash_cra_init ,
1536
1527
.cra_exit = stm32_hash_cra_exit ,
1537
1528
.cra_module = THIS_MODULE ,
@@ -1561,7 +1552,6 @@ static struct ahash_engine_alg algs_sha384_sha512[] = {
1561
1552
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1562
1553
.cra_blocksize = SHA384_BLOCK_SIZE ,
1563
1554
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1564
- .cra_alignmask = 3 ,
1565
1555
.cra_init = stm32_hash_cra_hmac_init ,
1566
1556
.cra_exit = stm32_hash_cra_exit ,
1567
1557
.cra_module = THIS_MODULE ,
@@ -1590,7 +1580,6 @@ static struct ahash_engine_alg algs_sha384_sha512[] = {
1590
1580
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1591
1581
.cra_blocksize = SHA512_BLOCK_SIZE ,
1592
1582
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1593
- .cra_alignmask = 3 ,
1594
1583
.cra_init = stm32_hash_cra_init ,
1595
1584
.cra_exit = stm32_hash_cra_exit ,
1596
1585
.cra_module = THIS_MODULE ,
@@ -1620,7 +1609,6 @@ static struct ahash_engine_alg algs_sha384_sha512[] = {
1620
1609
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1621
1610
.cra_blocksize = SHA512_BLOCK_SIZE ,
1622
1611
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1623
- .cra_alignmask = 3 ,
1624
1612
.cra_init = stm32_hash_cra_hmac_init ,
1625
1613
.cra_exit = stm32_hash_cra_exit ,
1626
1614
.cra_module = THIS_MODULE ,
@@ -1652,7 +1640,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1652
1640
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1653
1641
.cra_blocksize = SHA3_224_BLOCK_SIZE ,
1654
1642
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1655
- .cra_alignmask = 3 ,
1656
1643
.cra_init = stm32_hash_cra_sha3_init ,
1657
1644
.cra_exit = stm32_hash_cra_exit ,
1658
1645
.cra_module = THIS_MODULE ,
@@ -1682,7 +1669,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1682
1669
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1683
1670
.cra_blocksize = SHA3_224_BLOCK_SIZE ,
1684
1671
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1685
- .cra_alignmask = 3 ,
1686
1672
.cra_init = stm32_hash_cra_sha3_hmac_init ,
1687
1673
.cra_exit = stm32_hash_cra_exit ,
1688
1674
.cra_module = THIS_MODULE ,
@@ -1711,7 +1697,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1711
1697
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1712
1698
.cra_blocksize = SHA3_256_BLOCK_SIZE ,
1713
1699
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1714
- .cra_alignmask = 3 ,
1715
1700
.cra_init = stm32_hash_cra_sha3_init ,
1716
1701
.cra_exit = stm32_hash_cra_exit ,
1717
1702
.cra_module = THIS_MODULE ,
@@ -1741,7 +1726,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1741
1726
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1742
1727
.cra_blocksize = SHA3_256_BLOCK_SIZE ,
1743
1728
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1744
- .cra_alignmask = 3 ,
1745
1729
.cra_init = stm32_hash_cra_sha3_hmac_init ,
1746
1730
.cra_exit = stm32_hash_cra_exit ,
1747
1731
.cra_module = THIS_MODULE ,
@@ -1770,7 +1754,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1770
1754
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1771
1755
.cra_blocksize = SHA3_384_BLOCK_SIZE ,
1772
1756
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1773
- .cra_alignmask = 3 ,
1774
1757
.cra_init = stm32_hash_cra_sha3_init ,
1775
1758
.cra_exit = stm32_hash_cra_exit ,
1776
1759
.cra_module = THIS_MODULE ,
@@ -1800,7 +1783,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1800
1783
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1801
1784
.cra_blocksize = SHA3_384_BLOCK_SIZE ,
1802
1785
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1803
- .cra_alignmask = 3 ,
1804
1786
.cra_init = stm32_hash_cra_sha3_hmac_init ,
1805
1787
.cra_exit = stm32_hash_cra_exit ,
1806
1788
.cra_module = THIS_MODULE ,
@@ -1829,7 +1811,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1829
1811
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1830
1812
.cra_blocksize = SHA3_512_BLOCK_SIZE ,
1831
1813
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1832
- .cra_alignmask = 3 ,
1833
1814
.cra_init = stm32_hash_cra_sha3_init ,
1834
1815
.cra_exit = stm32_hash_cra_exit ,
1835
1816
.cra_module = THIS_MODULE ,
@@ -1859,7 +1840,6 @@ static struct ahash_engine_alg algs_sha3[] = {
1859
1840
CRYPTO_ALG_KERN_DRIVER_ONLY ,
1860
1841
.cra_blocksize = SHA3_512_BLOCK_SIZE ,
1861
1842
.cra_ctxsize = sizeof (struct stm32_hash_ctx ),
1862
- .cra_alignmask = 3 ,
1863
1843
.cra_init = stm32_hash_cra_sha3_hmac_init ,
1864
1844
.cra_exit = stm32_hash_cra_exit ,
1865
1845
.cra_module = THIS_MODULE ,
0 commit comments