Lines Matching refs:pDev
111 static int ms_generic_probe (struct device_s *pDev) in ms_generic_probe() argument
115 static int ms_generic_remove (struct device_s *pDev) in ms_generic_remove() argument
131 void ms_usb_show_string(struct usb_device *pDev, char *pStringId, int iIdx)
141 if (ms_usb_string(pDev, iIdx, pCbuf, 256) > 0)
209 int ms_usb_probe_interface(struct device_s *pDev) in ms_usb_probe_interface() argument
211 struct usb_interface * pUintf = get_usb_interface(pDev); in ms_usb_probe_interface()
212 struct usb_driver * pUdriver = get_usb_driver(pDev->driver); in ms_usb_probe_interface()
247 int ms_usb_unbind_interface(struct device_s *pDev) in ms_usb_unbind_interface() argument
249 struct usb_interface *pUintf = get_usb_interface(pDev); in ms_usb_unbind_interface()
250 struct usb_driver *pUdriver = get_usb_driver(pDev->driver); in ms_usb_unbind_interface()
307 struct device_s *pDev;
312 … pDev = (struct device_s *) ( (char *)_mptr - (char *)offsetof(struct device_s, driver_list) );
314 *pudev = (struct usb_device *) ((char *)pDev - (char *)offsetof( struct usb_device, dev));
359 static int ms_usb_device_match (struct device_s *pDev, struct device_driver *pDrv) in ms_usb_device_match() argument
369 pUintf = get_usb_interface(pDev); in ms_usb_device_match()
380 void ms_usb_release_dev(struct device_s *pDev) in ms_usb_release_dev() argument
385 pUdev = ms_to_usb_device(pDev); in ms_usb_release_dev()