From 607424d8583365418a337aa51e83403c8bd213ed Mon Sep 17 00:00:00 2001
From: Alexey Dobriyan <adobriyan@sw.ru>
Date: Wed, 5 Mar 2008 19:27:51 +0800
Subject: [CRYPTO] api: Switch to proc_create()

Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
---
 crypto/proc.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

(limited to 'crypto')

diff --git a/crypto/proc.c b/crypto/proc.c
index 3d73323..e482ab6 100644
--- a/crypto/proc.c
+++ b/crypto/proc.c
@@ -99,11 +99,7 @@ static const struct file_operations proc_crypto_ops = {
 
 void __init crypto_init_proc(void)
 {
-	struct proc_dir_entry *proc;
-	
-	proc = create_proc_entry("crypto", 0, NULL);
-	if (proc)
-		proc->proc_fops = &proc_crypto_ops;
+	proc_create("crypto", 0, NULL, &proc_crypto_ops);
 }
 
 void __exit crypto_exit_proc(void)
-- 
cgit v1.1