Lines Matching refs:pUintf
149 ms_usb_match_id(struct usb_interface *pUintf, const struct usb_device_id *pDevId) in ms_usb_match_id() argument
157 ms_intf = &pUintf->altsetting [pUintf->act_altsetting]; in ms_usb_match_id()
158 pUdev = interface_to_usbdev(pUintf); in ms_usb_match_id()
211 struct usb_interface * pUintf = get_usb_interface(pDev); in ms_usb_probe_interface() local
219 pUdev_id = ms_usb_match_id (pUintf, pUdriver->match_id_table); in ms_usb_probe_interface()
223 s32Error = pUdriver->probe_func (pUintf, pUdev_id); in ms_usb_probe_interface()
226 pUintf->driver = pUdriver; in ms_usb_probe_interface()
249 struct usb_interface *pUintf = get_usb_interface(pDev); in ms_usb_unbind_interface() local
252 ms_usb_disable_interface(interface_to_usbdev(pUintf), pUintf); in ms_usb_unbind_interface()
254 if (pUintf->driver && pUintf->driver->discon_func) in ms_usb_unbind_interface()
255 pUintf->driver->discon_func(pUintf); in ms_usb_unbind_interface()
257 ms_usb_driver_release_interface(pUdriver, pUintf); in ms_usb_unbind_interface()
361 struct usb_interface *pUintf; in ms_usb_device_match() local
369 pUintf = get_usb_interface(pDev); in ms_usb_device_match()
373 pUdev_id = ms_usb_match_id (pUintf, usb_drv->match_id_table); in ms_usb_device_match()