diff options
Diffstat (limited to 'crypto/algif_skcipher.c')
-rw-r--r-- | crypto/algif_skcipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/algif_skcipher.c b/crypto/algif_skcipher.c index 4c04eb9888ad..cfdaab2b7d76 100644 --- a/crypto/algif_skcipher.c +++ b/crypto/algif_skcipher.c | |||
@@ -206,7 +206,7 @@ static struct proto_ops algif_skcipher_ops = { | |||
206 | .sendmsg = skcipher_sendmsg, | 206 | .sendmsg = skcipher_sendmsg, |
207 | .sendpage = af_alg_sendpage, | 207 | .sendpage = af_alg_sendpage, |
208 | .recvmsg = skcipher_recvmsg, | 208 | .recvmsg = skcipher_recvmsg, |
209 | .poll_mask = af_alg_poll_mask, | 209 | .poll = af_alg_poll, |
210 | }; | 210 | }; |
211 | 211 | ||
212 | static int skcipher_check_key(struct socket *sock) | 212 | static int skcipher_check_key(struct socket *sock) |
@@ -302,7 +302,7 @@ static struct proto_ops algif_skcipher_ops_nokey = { | |||
302 | .sendmsg = skcipher_sendmsg_nokey, | 302 | .sendmsg = skcipher_sendmsg_nokey, |
303 | .sendpage = skcipher_sendpage_nokey, | 303 | .sendpage = skcipher_sendpage_nokey, |
304 | .recvmsg = skcipher_recvmsg_nokey, | 304 | .recvmsg = skcipher_recvmsg_nokey, |
305 | .poll_mask = af_alg_poll_mask, | 305 | .poll = af_alg_poll, |
306 | }; | 306 | }; |
307 | 307 | ||
308 | static void *skcipher_bind(const char *name, u32 type, u32 mask) | 308 | static void *skcipher_bind(const char *name, u32 type, u32 mask) |