diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-09 23:29:35 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-09 23:29:35 +0000 |
commit | 35385d7a83b4cae6d5ea5f80f3b3377d94178344 (patch) | |
tree | 49494d95dfef31ba4f9a697d31e4028cf65a57bd /drivers/usb | |
parent | d9d8062e7b49943b2a2fb034f817a9fc217fd40f (diff) |
Merge with 2.4.0-test3-pre7.
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/usb-uhci-debug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/usb-uhci-debug.h b/drivers/usb/usb-uhci-debug.h index 4eedc4183..d1c0ca83d 100644 --- a/drivers/usb/usb-uhci-debug.h +++ b/drivers/usb/usb-uhci-debug.h @@ -1,5 +1,5 @@ #ifdef DEBUG -static void uhci_show_qh (puhci_desc_t qh) +static void __attribute__((__unused__)) uhci_show_qh (puhci_desc_t qh) { if (qh->type != QH_TYPE) { dbg("qh has not QH_TYPE"); @@ -75,7 +75,7 @@ static void uhci_show_td (puhci_desc_t td) (td->hw.td.link & UHCI_PTR_DEPTH ? "Depth first" : "Breadth first")); } #ifdef DEBUG -static void uhci_show_td_queue (puhci_desc_t td) +static void __attribute__((__unused__)) uhci_show_td_queue (puhci_desc_t td) { //dbg("uhci_show_td_queue %p (%08lX):", td, virt_to_bus (td)); while (1) { @@ -91,7 +91,7 @@ static void uhci_show_td_queue (puhci_desc_t td) } } -static void uhci_show_queue (puhci_desc_t qh) +static void __attribute__((__unused__)) uhci_show_queue (puhci_desc_t qh) { uhci_desc_t *start_qh=qh; @@ -119,7 +119,7 @@ static void uhci_show_queue (puhci_desc_t qh) } } -static void uhci_show_sc (int port, unsigned short status) +static void __attribute__((__unused__)) uhci_show_sc (int port, unsigned short status) { dbg(" stat%d = %04x %s%s%s%s%s%s%s%s", port, |