Lines Matching refs:proc_pnp
34 static struct proc_dir_entry *proc_pnp = NULL; variable
227 if (!proc_pnp) in pnpbios_interface_attach_device()
230 proc_create_data(name, 0644, proc_pnp, &pnpbios_proc_ops, in pnpbios_interface_attach_device()
249 proc_pnp = proc_mkdir("bus/pnp", NULL); in pnpbios_proc_init()
250 if (!proc_pnp) in pnpbios_proc_init()
252 proc_pnp_boot = proc_mkdir("boot", proc_pnp); in pnpbios_proc_init()
255 proc_create_single("devices", 0, proc_pnp, pnp_devices_proc_show); in pnpbios_proc_init()
256 proc_create_single("configuration_info", 0, proc_pnp, in pnpbios_proc_init()
258 proc_create_single("escd_info", 0, proc_pnp, escd_info_proc_show); in pnpbios_proc_init()
259 proc_create_single("escd", S_IRUSR, proc_pnp, escd_proc_show); in pnpbios_proc_init()
260 proc_create_single("legacy_device_resources", 0, proc_pnp, in pnpbios_proc_init()
270 if (!proc_pnp) in pnpbios_proc_exit()
276 remove_proc_entry(name, proc_pnp); in pnpbios_proc_exit()
279 remove_proc_entry("legacy_device_resources", proc_pnp); in pnpbios_proc_exit()
280 remove_proc_entry("escd", proc_pnp); in pnpbios_proc_exit()
281 remove_proc_entry("escd_info", proc_pnp); in pnpbios_proc_exit()
282 remove_proc_entry("configuration_info", proc_pnp); in pnpbios_proc_exit()
283 remove_proc_entry("devices", proc_pnp); in pnpbios_proc_exit()
284 remove_proc_entry("boot", proc_pnp); in pnpbios_proc_exit()