]> err.no Git - linux-2.6/blobdiff - arch/x86/kernel/apm_32.c
x86: use bitmap library for pin_programmed
[linux-2.6] / arch / x86 / kernel / apm_32.c
index d4438ef296d8a607f7a703a845040715a8335fd9..f0030a0999c74f01785c4acd7a499778de58a4ff 100644 (file)
@@ -2217,7 +2217,6 @@ static struct dmi_system_id __initdata apm_dmi_table[] = {
  */
 static int __init apm_init(void)
 {
-       struct proc_dir_entry *apm_proc;
        struct desc_struct *gdt;
        int err;
 
@@ -2322,9 +2321,7 @@ static int __init apm_init(void)
        set_base(gdt[APM_DS >> 3],
                 __va((unsigned long)apm_info.bios.dseg << 4));
 
-       apm_proc = create_proc_entry("apm", 0, NULL);
-       if (apm_proc)
-               apm_proc->proc_fops = &apm_file_ops;
+       proc_create("apm", 0, NULL, &apm_file_ops);
 
        kapmd_task = kthread_create(apm, NULL, "kapmd");
        if (IS_ERR(kapmd_task)) {