X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=kernel%2Fprofile.c;h=ae7ead82cbc9f7bd25a15ec373c14a1f2ea79bf5;hb=c3d1d5c8c10c937c65186f6dac75e2fb4675ef07;hp=e64c2da11c0f89018c31aca62dd69688d22d59eb;hpb=d870ec7281d8429ab17d2e0324f4d8ca3f3de62d;p=linux-2.6-omap-h63xx.git diff --git a/kernel/profile.c b/kernel/profile.c index e64c2da11c0..ae7ead82cbc 100644 --- a/kernel/profile.c +++ b/kernel/profile.c @@ -20,11 +20,9 @@ #include #include #include -#include #include #include #include -#include #include #include @@ -589,10 +587,10 @@ static int __init create_proc_profile(void) return 0; if (create_hash_tables()) return -1; - entry = create_proc_entry("profile", S_IWUSR | S_IRUGO, NULL); + entry = proc_create("profile", S_IWUSR | S_IRUGO, + NULL, &proc_profile_operations); if (!entry) return 0; - entry->proc_fops = &proc_profile_operations; entry->size = (1+prof_len) * sizeof(atomic_t); hotcpu_notifier(profile_cpu_callback, 0); return 0;