Lines Matching refs:p_dev
57 device_t p_dev; member
179 port->p_ipend = SERDEV_IPEND(port->p_dev); in puc_intr()
319 port->p_dev = device_add_child(dev, NULL, -1); in puc_bfe_attach()
320 if (port->p_dev != NULL) in puc_bfe_attach()
321 device_set_ivars(port->p_dev, (void *)port); in puc_bfe_attach()
358 if (port->p_dev == NULL) in puc_bfe_attach()
360 error = device_probe_and_attach(port->p_dev); in puc_bfe_attach()
362 device_delete_child(dev, port->p_dev); in puc_bfe_attach()
363 port->p_dev = NULL; in puc_bfe_attach()
379 if (port->p_dev != NULL) in puc_bfe_attach()
380 device_delete_child(dev, port->p_dev); in puc_bfe_attach()
416 if (port->p_dev == NULL) in puc_bfe_detach()
418 if (device_delete_child(dev, port->p_dev) == 0) { in puc_bfe_detach()