Skip to content

Commit 25a09ce

Browse files
ebiggersdavem330
authored andcommitted
ppp: mppe: Revert "ppp: mppe: Add softdep to arc4"
Commit 0e5a610 ("ppp: mppe: switch to RC4 library interface"), which was merged through the crypto tree for v5.3, changed ppp_mppe.c to use the new arc4_crypt() library function rather than access RC4 through the dynamic crypto_skcipher API. Meanwhile commit aad1dcc ("ppp: mppe: Add softdep to arc4") was merged through the net tree and added a module soft-dependency on "arc4". The latter commit no longer makes sense because the code now uses the "libarc4" module rather than "arc4", and also due to the direct use of arc4_crypt(), no module soft-dependency is required. So revert the latter commit. Cc: Takashi Iwai <tiwai@suse.de> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent f32ae8a commit 25a09ce

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

drivers/net/ppp/ppp_mppe.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ MODULE_AUTHOR("Frank Cusack <fcusack@fcusack.com>");
6464
MODULE_DESCRIPTION("Point-to-Point Protocol Microsoft Point-to-Point Encryption support");
6565
MODULE_LICENSE("Dual BSD/GPL");
6666
MODULE_ALIAS("ppp-compress-" __stringify(CI_MPPE));
67-
MODULE_SOFTDEP("pre: arc4");
6867
MODULE_VERSION("1.0.2");
6968

7069
#define SHA1_PAD_SIZE 40

0 commit comments

Comments
 (0)