Lines Matching refs:proc_pnp
33 static struct proc_dir_entry *proc_pnp = NULL; variable
292 if (!proc_pnp) in pnpbios_interface_attach_device()
295 proc_create_data(name, 0644, proc_pnp, &pnpbios_proc_fops, in pnpbios_interface_attach_device()
314 proc_pnp = proc_mkdir("bus/pnp", NULL); in pnpbios_proc_init()
315 if (!proc_pnp) in pnpbios_proc_init()
317 proc_pnp_boot = proc_mkdir("boot", proc_pnp); in pnpbios_proc_init()
320 proc_create("devices", 0, proc_pnp, &pnp_devices_proc_fops); in pnpbios_proc_init()
321 proc_create("configuration_info", 0, proc_pnp, &pnpconfig_proc_fops); in pnpbios_proc_init()
322 proc_create("escd_info", 0, proc_pnp, &escd_info_proc_fops); in pnpbios_proc_init()
323 proc_create("escd", S_IRUSR, proc_pnp, &escd_proc_fops); in pnpbios_proc_init()
324 proc_create("legacy_device_resources", 0, proc_pnp, &pnp_legacyres_proc_fops); in pnpbios_proc_init()
334 if (!proc_pnp) in pnpbios_proc_exit()
340 remove_proc_entry(name, proc_pnp); in pnpbios_proc_exit()
343 remove_proc_entry("legacy_device_resources", proc_pnp); in pnpbios_proc_exit()
344 remove_proc_entry("escd", proc_pnp); in pnpbios_proc_exit()
345 remove_proc_entry("escd_info", proc_pnp); in pnpbios_proc_exit()
346 remove_proc_entry("configuration_info", proc_pnp); in pnpbios_proc_exit()
347 remove_proc_entry("devices", proc_pnp); in pnpbios_proc_exit()
348 remove_proc_entry("boot", proc_pnp); in pnpbios_proc_exit()