Lines Matching refs:proc_pnp
34 static struct proc_dir_entry *proc_pnp = NULL; variable
228 if (!proc_pnp) in pnpbios_interface_attach_device()
231 proc_create_data(name, 0644, proc_pnp, &pnpbios_proc_fops, in pnpbios_interface_attach_device()
250 proc_pnp = proc_mkdir("bus/pnp", NULL); in pnpbios_proc_init()
251 if (!proc_pnp) in pnpbios_proc_init()
253 proc_pnp_boot = proc_mkdir("boot", proc_pnp); in pnpbios_proc_init()
256 proc_create_single("devices", 0, proc_pnp, pnp_devices_proc_show); in pnpbios_proc_init()
257 proc_create_single("configuration_info", 0, proc_pnp, in pnpbios_proc_init()
259 proc_create_single("escd_info", 0, proc_pnp, escd_info_proc_show); in pnpbios_proc_init()
260 proc_create_single("escd", S_IRUSR, proc_pnp, escd_proc_show); in pnpbios_proc_init()
261 proc_create_single("legacy_device_resources", 0, proc_pnp, in pnpbios_proc_init()
271 if (!proc_pnp) in pnpbios_proc_exit()
277 remove_proc_entry(name, proc_pnp); in pnpbios_proc_exit()
280 remove_proc_entry("legacy_device_resources", proc_pnp); in pnpbios_proc_exit()
281 remove_proc_entry("escd", proc_pnp); in pnpbios_proc_exit()
282 remove_proc_entry("escd_info", proc_pnp); in pnpbios_proc_exit()
283 remove_proc_entry("configuration_info", proc_pnp); in pnpbios_proc_exit()
284 remove_proc_entry("devices", proc_pnp); in pnpbios_proc_exit()
285 remove_proc_entry("boot", proc_pnp); in pnpbios_proc_exit()