#ifndef ASM_PARISC_RUNWAY_H
 #define ASM_PARISC_RUNWAY_H
 
-/* declared in arch/parisc/kernel/setup.c */
-extern struct proc_dir_entry * proc_runway_root;
-
 #define RUNWAY_STATUS  0x10
 #define RUNWAY_DEBUG   0x40
 
 
 #undef CCIO_COLLECT_STATS
 #endif
 
-#include <asm/runway.h>                /* for proc_runway_root */
-
 #ifdef DEBUG_CCIO_INIT
 #define DBG_INIT(x...)  printk(x)
 #else
 
 #ifdef CONFIG_PROC_FS
        if (ioc_count == 0) {
-               proc_create_single(MODULE_NAME, 0, proc_runway_root,
+               struct proc_dir_entry *runway;
+
+               runway = proc_mkdir("bus/runway", NULL);
+               if (runway) {
+                       proc_create_single(MODULE_NAME, 0, runway,
                                ccio_proc_info);
-               proc_create_single(MODULE_NAME"-bitmap", 0, proc_runway_root,
+                       proc_create_single(MODULE_NAME"-bitmap", 0, runway,
                                ccio_proc_bitmap_info);
+               }
        }
 #endif
        ioc_count++;
 
 MODULE_PARM_DESC(sba_reserve_agpgart, "Reserve half of IO pdir as AGPGART");
 #endif
 
-struct proc_dir_entry *proc_runway_root __ro_after_init;
+static struct proc_dir_entry *proc_runway_root __ro_after_init;
 struct proc_dir_entry *proc_mckinley_root __ro_after_init;
 
 /************************************