mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
Sort entries in usbport.def
Define some functions only if DEBUG_MODE is defined svn path=/trunk/; revision=19524
This commit is contained in:
parent
5247d48cf1
commit
aa70297ede
5 changed files with 28 additions and 24 deletions
|
@ -656,7 +656,7 @@ void my_kmem_cache_free(kmem_cache_t *co, void *ptr);
|
||||||
#define dev_warn(x,f,arg...) do {} while (0)
|
#define dev_warn(x,f,arg...) do {} while (0)
|
||||||
#define dev_err(x,f,arg...) do {} while (0)
|
#define dev_err(x,f,arg...) do {} while (0)
|
||||||
#define pr_debug(x,f,arg...) do {} while (0)
|
#define pr_debug(x,f,arg...) do {} while (0)
|
||||||
#define usbprintk
|
#define usbprintk(arg...) dev_printk(0,0,0,## arg)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -625,6 +625,7 @@ int ohci_irq (struct usb_hcd *hcd, struct pt_regs *ptregs)
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*/
|
/*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef DEBUG_MODE
|
||||||
// HCFS itself
|
// HCFS itself
|
||||||
static char *hcfs2string (int state)
|
static char *hcfs2string (int state)
|
||||||
{
|
{
|
||||||
|
@ -636,6 +637,7 @@ static char *hcfs2string (int state)
|
||||||
}
|
}
|
||||||
return "?";
|
return "?";
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void ohci_stop (struct usb_hcd *hcd)
|
static void ohci_stop (struct usb_hcd *hcd)
|
||||||
{
|
{
|
||||||
|
|
|
@ -103,7 +103,7 @@ UsbhubFdoQueryBusRelations(
|
||||||
PdoExtension->IsFDO = FALSE;
|
PdoExtension->IsFDO = FALSE;
|
||||||
PdoExtension->dev = dev->children[i];
|
PdoExtension->dev = dev->children[i];
|
||||||
|
|
||||||
sprintf(Buffer[0], "%lu", i + 1);
|
sprintf(Buffer[0], "%lu", i);
|
||||||
Status = UsbhubInitMultiSzString(
|
Status = UsbhubInitMultiSzString(
|
||||||
&PdoExtension->InstanceId,
|
&PdoExtension->InstanceId,
|
||||||
Buffer[0], NULL);
|
Buffer[0], NULL);
|
||||||
|
|
|
@ -822,6 +822,7 @@ int STDCALL usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
|
||||||
|
|
||||||
new_alloc = old_alloc + (int) bustime;
|
new_alloc = old_alloc + (int) bustime;
|
||||||
if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
|
if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
|
||||||
|
#ifdef DEBUG_MODE
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
char *mode =
|
char *mode =
|
||||||
#ifdef CONFIG_USB_BANDWIDTH
|
#ifdef CONFIG_USB_BANDWIDTH
|
||||||
|
@ -832,6 +833,7 @@ int STDCALL usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
|
||||||
dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
|
dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
|
||||||
mode, old_alloc, bustime, new_alloc);
|
mode, old_alloc, bustime, new_alloc);
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
#ifdef CONFIG_USB_BANDWIDTH
|
#ifdef CONFIG_USB_BANDWIDTH
|
||||||
bustime = -ENOSPC; /* report error */
|
bustime = -ENOSPC; /* report error */
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2,33 +2,33 @@
|
||||||
; Exports definition file for usbcore.sys
|
; Exports definition file for usbcore.sys
|
||||||
;
|
;
|
||||||
EXPORTS
|
EXPORTS
|
||||||
usb_init@0
|
RegisterPortDriver@8
|
||||||
usb_exit@0
|
|
||||||
usb_init_urb@4
|
|
||||||
usb_alloc_urb@8
|
|
||||||
usb_free_urb@4
|
|
||||||
usb_get_string
|
|
||||||
usb_get_urb@4
|
|
||||||
usb_get_dev@4
|
|
||||||
usb_submit_urb@8
|
|
||||||
usb_unlink_urb@4
|
|
||||||
usb_bus_init@4
|
|
||||||
usb_alloc_bus@4
|
usb_alloc_bus@4
|
||||||
usb_free_bus@4
|
usb_alloc_dev@8
|
||||||
usb_register_bus@4
|
usb_alloc_urb@8
|
||||||
usb_deregister_bus@4
|
usb_bus_init@4
|
||||||
usb_register_root_hub@8
|
|
||||||
usb_calc_bus_time@16
|
usb_calc_bus_time@16
|
||||||
usb_check_bandwidth@8
|
usb_check_bandwidth@8
|
||||||
usb_claim_bandwidth@16
|
usb_claim_bandwidth@16
|
||||||
usb_release_bandwidth@12
|
usb_connect@4
|
||||||
|
usb_deregister_bus@4
|
||||||
|
usb_disabled@0
|
||||||
|
usb_exit@0
|
||||||
|
usb_free_bus@4
|
||||||
|
usb_free_urb@4
|
||||||
|
usb_get_dev@4
|
||||||
|
usb_get_string
|
||||||
|
usb_get_urb@4
|
||||||
usb_hcd_giveback_urb@12
|
usb_hcd_giveback_urb@12
|
||||||
;usb_hcd_irq@12
|
;usb_hcd_irq@12
|
||||||
usb_hc_died@4
|
|
||||||
usb_alloc_dev@8
|
|
||||||
usb_connect@4
|
|
||||||
usb_put_dev@4
|
|
||||||
usb_disabled@0
|
|
||||||
usb_hcd_pci_probe@8
|
usb_hcd_pci_probe@8
|
||||||
usb_hcd_pci_remove@4
|
usb_hcd_pci_remove@4
|
||||||
RegisterPortDriver@8
|
usb_hc_died@4
|
||||||
|
usb_init@0
|
||||||
|
usb_init_urb@4
|
||||||
|
usb_put_dev@4
|
||||||
|
usb_release_bandwidth@12
|
||||||
|
usb_register_bus@4
|
||||||
|
usb_register_root_hub@8
|
||||||
|
usb_submit_urb@8
|
||||||
|
usb_unlink_urb@4
|
Loading…
Reference in a new issue