blob: ab8ba8220ad18a2bb12ba582935111b6fce9d3de [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * UHCI-specific debugging code. Invaluable when something
3 * goes wrong, but don't get in my face.
4 *
Alan Stern687f5f32005-11-30 17:16:19 -05005 * Kernel visible pointers are surrounded in []s and bus
6 * visible pointers are surrounded in ()s
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * (C) Copyright 1999 Linus Torvalds
9 * (C) Copyright 1999-2001 Johannes Erdfelt
10 */
11
12#include <linux/config.h>
13#include <linux/kernel.h>
14#include <linux/debugfs.h>
15#include <linux/smp_lock.h>
16#include <asm/io.h>
17
18#include "uhci-hcd.h"
19
Alan Stern8d402e12005-12-17 18:03:37 -050020#define uhci_debug_operations (* (struct file_operations *) NULL)
21static struct dentry *uhci_debugfs_root;
22
23#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alan Stern687f5f32005-11-30 17:16:19 -050025/* Handle REALLY large printks so we don't overflow buffers */
Alan Stern8d402e12005-12-17 18:03:37 -050026static void lprintk(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 char *p;
29
30 /* Just write one line at a time */
31 while (buf) {
32 p = strchr(buf, '\n');
33 if (p)
34 *p = 0;
35 printk(KERN_DEBUG "%s\n", buf);
36 buf = p;
37 if (buf)
38 buf++;
39 }
40}
41
42static int uhci_show_td(struct uhci_td *td, char *buf, int len, int space)
43{
44 char *out = buf;
45 char *spid;
46 u32 status, token;
47
48 /* Try to make sure there's enough memory */
49 if (len < 160)
50 return 0;
51
52 status = td_status(td);
53 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td, le32_to_cpu(td->link));
54 out += sprintf(out, "e%d %s%s%s%s%s%s%s%s%s%sLength=%x ",
55 ((status >> 27) & 3),
56 (status & TD_CTRL_SPD) ? "SPD " : "",
57 (status & TD_CTRL_LS) ? "LS " : "",
58 (status & TD_CTRL_IOC) ? "IOC " : "",
59 (status & TD_CTRL_ACTIVE) ? "Active " : "",
60 (status & TD_CTRL_STALLED) ? "Stalled " : "",
61 (status & TD_CTRL_DBUFERR) ? "DataBufErr " : "",
62 (status & TD_CTRL_BABBLE) ? "Babble " : "",
63 (status & TD_CTRL_NAK) ? "NAK " : "",
64 (status & TD_CTRL_CRCTIMEO) ? "CRC/Timeo " : "",
65 (status & TD_CTRL_BITSTUFF) ? "BitStuff " : "",
66 status & 0x7ff);
67
68 token = td_token(td);
69 switch (uhci_packetid(token)) {
70 case USB_PID_SETUP:
71 spid = "SETUP";
72 break;
73 case USB_PID_OUT:
74 spid = "OUT";
75 break;
76 case USB_PID_IN:
77 spid = "IN";
78 break;
79 default:
80 spid = "?";
81 break;
82 }
83
84 out += sprintf(out, "MaxLen=%x DT%d EndPt=%x Dev=%x, PID=%x(%s) ",
85 token >> 21,
86 ((token >> 19) & 1),
87 (token >> 15) & 15,
88 (token >> 8) & 127,
89 (token & 0xff),
90 spid);
91 out += sprintf(out, "(buf=%08x)\n", le32_to_cpu(td->buffer));
92
93 return out - buf;
94}
95
Alan Sterndccf4a42005-12-17 17:58:46 -050096static int uhci_show_urbp(struct urb_priv *urbp, char *buf, int len, int space)
97{
98 char *out = buf;
99 struct uhci_td *td;
100 int i, nactive, ninactive;
Alan Stern4de7d2c2006-05-05 16:26:58 -0400101 char *ptype;
Alan Sterndccf4a42005-12-17 17:58:46 -0500102
103 if (len < 200)
104 return 0;
105
106 out += sprintf(out, "urb_priv [%p] ", urbp);
107 out += sprintf(out, "urb [%p] ", urbp->urb);
108 out += sprintf(out, "qh [%p] ", urbp->qh);
109 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe));
110 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe),
111 (usb_pipein(urbp->urb->pipe) ? "IN" : "OUT"));
112
113 switch (usb_pipetype(urbp->urb->pipe)) {
Alan Stern4de7d2c2006-05-05 16:26:58 -0400114 case PIPE_ISOCHRONOUS: ptype = "ISO"; break;
115 case PIPE_INTERRUPT: ptype = "INT"; break;
116 case PIPE_BULK: ptype = "BLK"; break;
117 default:
118 case PIPE_CONTROL: ptype = "CTL"; break;
Alan Sterndccf4a42005-12-17 17:58:46 -0500119 }
120
Alan Stern4de7d2c2006-05-05 16:26:58 -0400121 out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : ""));
Alan Stern59e29ed2006-05-12 11:19:19 -0400122 out += sprintf(out, " Actlen=%d", urbp->urb->actual_length);
Alan Sterndccf4a42005-12-17 17:58:46 -0500123
124 if (urbp->urb->status != -EINPROGRESS)
125 out += sprintf(out, " Status=%d", urbp->urb->status);
126 out += sprintf(out, "\n");
127
128 i = nactive = ninactive = 0;
129 list_for_each_entry(td, &urbp->td_list, list) {
130 if (++i <= 10 || debug > 2) {
131 out += sprintf(out, "%*s%d: ", space + 2, "", i);
132 out += uhci_show_td(td, out, len - (out - buf), 0);
133 } else {
134 if (td_status(td) & TD_CTRL_ACTIVE)
135 ++nactive;
136 else
137 ++ninactive;
138 }
139 }
140 if (nactive + ninactive > 0)
141 out += sprintf(out, "%*s[skipped %d inactive and %d active "
142 "TDs]\n",
143 space, "", ninactive, nactive);
144
145 return out - buf;
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static int uhci_show_qh(struct uhci_qh *qh, char *buf, int len, int space)
149{
150 char *out = buf;
Alan Sterndccf4a42005-12-17 17:58:46 -0500151 int i, nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 __le32 element = qh_element(qh);
Alan Stern4de7d2c2006-05-05 16:26:58 -0400153 char *qtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* Try to make sure there's enough memory */
Alan Sterncaf38272006-05-19 16:44:55 -0400156 if (len < 80 * 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return 0;
158
Alan Stern4de7d2c2006-05-05 16:26:58 -0400159 switch (qh->type) {
160 case USB_ENDPOINT_XFER_ISOC: qtype = "ISO"; break;
161 case USB_ENDPOINT_XFER_INT: qtype = "INT"; break;
162 case USB_ENDPOINT_XFER_BULK: qtype = "BLK"; break;
163 case USB_ENDPOINT_XFER_CONTROL: qtype = "CTL"; break;
164 default: qtype = "Skel" ; break;
165 }
166
167 out += sprintf(out, "%*s[%p] %s QH link (%08x) element (%08x)\n",
168 space, "", qh, qtype,
169 le32_to_cpu(qh->link), le32_to_cpu(element));
Alan Sterncaf38272006-05-19 16:44:55 -0400170 if (qh->type == USB_ENDPOINT_XFER_ISOC)
171 out += sprintf(out, "%*s period %d\n",
172 space, "", qh->period);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 if (element & UHCI_PTR_QH)
175 out += sprintf(out, "%*s Element points to QH (bug?)\n", space, "");
176
177 if (element & UHCI_PTR_DEPTH)
178 out += sprintf(out, "%*s Depth traverse\n", space, "");
179
180 if (element & cpu_to_le32(8))
181 out += sprintf(out, "%*s Bit 3 set (bug?)\n", space, "");
182
183 if (!(element & ~(UHCI_PTR_QH | UHCI_PTR_DEPTH)))
184 out += sprintf(out, "%*s Element is NULL (bug?)\n", space, "");
185
Alan Sterndccf4a42005-12-17 17:58:46 -0500186 if (list_empty(&qh->queue)) {
187 out += sprintf(out, "%*s queue is empty\n", space, "");
188 } else {
189 struct urb_priv *urbp = list_entry(qh->queue.next,
190 struct urb_priv, node);
191 struct uhci_td *td = list_entry(urbp->td_list.next,
192 struct uhci_td, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Alan Sterndccf4a42005-12-17 17:58:46 -0500194 if (cpu_to_le32(td->dma_handle) != (element & ~UHCI_PTR_BITS))
195 out += sprintf(out, "%*s Element != First TD\n",
196 space, "");
197 i = nurbs = 0;
198 list_for_each_entry(urbp, &qh->queue, node) {
199 if (++i <= 10)
200 out += uhci_show_urbp(urbp, out,
201 len - (out - buf), space + 2);
202 else
203 ++nurbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500205 if (nurbs > 0)
206 out += sprintf(out, "%*s Skipped %d URBs\n",
207 space, "", nurbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Alan Sternaf0bb592005-12-17 18:00:12 -0500210 if (qh->udev) {
211 out += sprintf(out, "%*s Dummy TD\n", space, "");
212 out += uhci_show_td(qh->dummy_td, out, len - (out - buf), 0);
213 }
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return out - buf;
216}
217
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100218static const char * const qh_names[] = {
Alan Sterndccf4a42005-12-17 17:58:46 -0500219 "skel_unlink_qh", "skel_iso_qh",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 "skel_int128_qh", "skel_int64_qh",
221 "skel_int32_qh", "skel_int16_qh",
222 "skel_int8_qh", "skel_int4_qh",
223 "skel_int2_qh", "skel_int1_qh",
224 "skel_ls_control_qh", "skel_fs_control_qh",
225 "skel_bulk_qh", "skel_term_qh"
226};
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static int uhci_show_sc(int port, unsigned short status, char *buf, int len)
229{
230 char *out = buf;
231
232 /* Try to make sure there's enough memory */
233 if (len < 160)
234 return 0;
235
236 out += sprintf(out, " stat%d = %04x %s%s%s%s%s%s%s%s%s%s\n",
237 port,
238 status,
239 (status & USBPORTSC_SUSP) ? " Suspend" : "",
240 (status & USBPORTSC_OCC) ? " OverCurrentChange" : "",
241 (status & USBPORTSC_OC) ? " OverCurrent" : "",
242 (status & USBPORTSC_PR) ? " Reset" : "",
243 (status & USBPORTSC_LSDA) ? " LowSpeed" : "",
244 (status & USBPORTSC_RD) ? " ResumeDetect" : "",
245 (status & USBPORTSC_PEC) ? " EnableChange" : "",
246 (status & USBPORTSC_PE) ? " Enabled" : "",
247 (status & USBPORTSC_CSC) ? " ConnectChange" : "",
248 (status & USBPORTSC_CCS) ? " Connected" : "");
249
250 return out - buf;
251}
252
Alan Sternc8f4fe42005-04-09 17:27:32 -0400253static int uhci_show_root_hub_state(struct uhci_hcd *uhci, char *buf, int len)
254{
255 char *out = buf;
256 char *rh_state;
257
258 /* Try to make sure there's enough memory */
259 if (len < 60)
260 return 0;
261
262 switch (uhci->rh_state) {
263 case UHCI_RH_RESET:
264 rh_state = "reset"; break;
265 case UHCI_RH_SUSPENDED:
266 rh_state = "suspended"; break;
267 case UHCI_RH_AUTO_STOPPED:
268 rh_state = "auto-stopped"; break;
269 case UHCI_RH_RESUMING:
270 rh_state = "resuming"; break;
271 case UHCI_RH_SUSPENDING:
272 rh_state = "suspending"; break;
273 case UHCI_RH_RUNNING:
274 rh_state = "running"; break;
275 case UHCI_RH_RUNNING_NODEVS:
276 rh_state = "running, no devs"; break;
277 default:
278 rh_state = "?"; break;
279 }
Alan Stern84afddd2006-05-12 11:35:45 -0400280 out += sprintf(out, "Root-hub state: %s FSBR: %d\n",
281 rh_state, uhci->fsbr_is_on);
Alan Sternc8f4fe42005-04-09 17:27:32 -0400282 return out - buf;
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static int uhci_show_status(struct uhci_hcd *uhci, char *buf, int len)
286{
287 char *out = buf;
288 unsigned long io_addr = uhci->io_addr;
289 unsigned short usbcmd, usbstat, usbint, usbfrnum;
290 unsigned int flbaseadd;
291 unsigned char sof;
292 unsigned short portsc1, portsc2;
293
294 /* Try to make sure there's enough memory */
Alan Sternc4334722006-05-19 16:34:57 -0400295 if (len < 80 * 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return 0;
297
298 usbcmd = inw(io_addr + 0);
299 usbstat = inw(io_addr + 2);
300 usbint = inw(io_addr + 4);
301 usbfrnum = inw(io_addr + 6);
302 flbaseadd = inl(io_addr + 8);
303 sof = inb(io_addr + 12);
304 portsc1 = inw(io_addr + 16);
305 portsc2 = inw(io_addr + 18);
306
307 out += sprintf(out, " usbcmd = %04x %s%s%s%s%s%s%s%s\n",
308 usbcmd,
309 (usbcmd & USBCMD_MAXP) ? "Maxp64 " : "Maxp32 ",
310 (usbcmd & USBCMD_CF) ? "CF " : "",
311 (usbcmd & USBCMD_SWDBG) ? "SWDBG " : "",
312 (usbcmd & USBCMD_FGR) ? "FGR " : "",
313 (usbcmd & USBCMD_EGSM) ? "EGSM " : "",
314 (usbcmd & USBCMD_GRESET) ? "GRESET " : "",
315 (usbcmd & USBCMD_HCRESET) ? "HCRESET " : "",
316 (usbcmd & USBCMD_RS) ? "RS " : "");
317
318 out += sprintf(out, " usbstat = %04x %s%s%s%s%s%s\n",
319 usbstat,
320 (usbstat & USBSTS_HCH) ? "HCHalted " : "",
321 (usbstat & USBSTS_HCPE) ? "HostControllerProcessError " : "",
322 (usbstat & USBSTS_HSE) ? "HostSystemError " : "",
323 (usbstat & USBSTS_RD) ? "ResumeDetect " : "",
324 (usbstat & USBSTS_ERROR) ? "USBError " : "",
325 (usbstat & USBSTS_USBINT) ? "USBINT " : "");
326
327 out += sprintf(out, " usbint = %04x\n", usbint);
328 out += sprintf(out, " usbfrnum = (%d)%03x\n", (usbfrnum >> 10) & 1,
329 0xfff & (4*(unsigned int)usbfrnum));
330 out += sprintf(out, " flbaseadd = %08x\n", flbaseadd);
331 out += sprintf(out, " sof = %02x\n", sof);
332 out += uhci_show_sc(1, portsc1, out, len - (out - buf));
333 out += uhci_show_sc(2, portsc2, out, len - (out - buf));
Alan Sternc4334722006-05-19 16:34:57 -0400334 out += sprintf(out, "Most recent frame: %x\n",
335 uhci->frame_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 return out - buf;
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static int uhci_sprint_schedule(struct uhci_hcd *uhci, char *buf, int len)
341{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 char *out = buf;
343 int i, j;
344 struct uhci_qh *qh;
345 struct uhci_td *td;
346 struct list_head *tmp, *head;
347
Alan Sternc8f4fe42005-04-09 17:27:32 -0400348 out += uhci_show_root_hub_state(uhci, out, len - (out - buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 out += sprintf(out, "HC status\n");
350 out += uhci_show_status(uhci, out, len - (out - buf));
Alan Sterndccf4a42005-12-17 17:58:46 -0500351 if (debug <= 1)
352 return out - buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 out += sprintf(out, "Frame List\n");
355 for (i = 0; i < UHCI_NUMFRAMES; ++i) {
Alan Sterna1d59ce2005-09-16 14:22:51 -0400356 td = uhci->frame_cpu[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (!td)
358 continue;
359
Alan Sterndccf4a42005-12-17 17:58:46 -0500360 out += sprintf(out, "- Frame %d\n", i); \
361 if (td->dma_handle != (dma_addr_t)uhci->frame[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 out += sprintf(out, " frame list does not match td->dma_handle!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 head = &td->fl_list;
365 tmp = head;
366 do {
367 td = list_entry(tmp, struct uhci_td, fl_list);
368 tmp = tmp->next;
369 out += uhci_show_td(td, out, len - (out - buf), 4);
370 } while (tmp != head);
371 }
372
Alan Stern687f5f32005-11-30 17:16:19 -0500373 out += sprintf(out, "Skeleton QHs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 for (i = 0; i < UHCI_NUM_SKELQH; ++i) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500376 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 qh = uhci->skelqh[i];
Alan Sterndccf4a42005-12-17 17:58:46 -0500379 out += sprintf(out, "- %s\n", qh_names[i]); \
380 out += uhci_show_qh(qh, out, len - (out - buf), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /* Last QH is the Terminating QH, it's different */
383 if (i == UHCI_NUM_SKELQH - 1) {
384 if (qh->link != UHCI_PTR_TERM)
385 out += sprintf(out, " bandwidth reclamation on!\n");
386
387 if (qh_element(qh) != cpu_to_le32(uhci->term_td->dma_handle))
388 out += sprintf(out, " skel_term_qh element is not set to term_td!\n");
389
390 continue;
391 }
392
Alan Sterndccf4a42005-12-17 17:58:46 -0500393 j = (i < 9) ? 9 : i+1; /* Next skeleton */
394 head = &qh->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 tmp = head->next;
396
397 while (tmp != head) {
Alan Sterndccf4a42005-12-17 17:58:46 -0500398 qh = list_entry(tmp, struct uhci_qh, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 tmp = tmp->next;
Alan Sterndccf4a42005-12-17 17:58:46 -0500400 if (++cnt <= 10)
401 out += uhci_show_qh(qh, out,
402 len - (out - buf), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Alan Sterndccf4a42005-12-17 17:58:46 -0500404 if ((cnt -= 10) > 0)
405 out += sprintf(out, " Skipped %d QHs\n", cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Alan Sterndccf4a42005-12-17 17:58:46 -0500407 if (i > 1 && i < UHCI_NUM_SKELQH - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (qh->link !=
409 (cpu_to_le32(uhci->skelqh[j]->dma_handle) | UHCI_PTR_QH))
410 out += sprintf(out, " last QH not linked to next skeleton!\n");
411 }
412 }
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return out - buf;
415}
416
Alan Stern8d402e12005-12-17 18:03:37 -0500417#ifdef CONFIG_DEBUG_FS
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#define MAX_OUTPUT (64 * 1024)
420
421struct uhci_debug {
422 int size;
423 char *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424};
425
426static int uhci_debug_open(struct inode *inode, struct file *file)
427{
428 struct uhci_hcd *uhci = inode->u.generic_ip;
429 struct uhci_debug *up;
430 int ret = -ENOMEM;
Alan Sterndccf4a42005-12-17 17:58:46 -0500431 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 lock_kernel();
434 up = kmalloc(sizeof(*up), GFP_KERNEL);
435 if (!up)
436 goto out;
437
438 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL);
439 if (!up->data) {
440 kfree(up);
441 goto out;
442 }
443
Alan Stern8d402e12005-12-17 18:03:37 -0500444 up->size = 0;
Alan Sterndccf4a42005-12-17 17:58:46 -0500445 spin_lock_irqsave(&uhci->lock, flags);
Alan Stern8d402e12005-12-17 18:03:37 -0500446 if (uhci->is_initialized)
447 up->size = uhci_sprint_schedule(uhci, up->data, MAX_OUTPUT);
Alan Sterndccf4a42005-12-17 17:58:46 -0500448 spin_unlock_irqrestore(&uhci->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 file->private_data = up;
451
452 ret = 0;
453out:
454 unlock_kernel();
455 return ret;
456}
457
458static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence)
459{
460 struct uhci_debug *up;
461 loff_t new = -1;
462
463 lock_kernel();
464 up = file->private_data;
465
466 switch (whence) {
467 case 0:
468 new = off;
469 break;
470 case 1:
471 new = file->f_pos + off;
472 break;
473 }
474 if (new < 0 || new > up->size) {
475 unlock_kernel();
476 return -EINVAL;
477 }
478 unlock_kernel();
479 return (file->f_pos = new);
480}
481
482static ssize_t uhci_debug_read(struct file *file, char __user *buf,
483 size_t nbytes, loff_t *ppos)
484{
485 struct uhci_debug *up = file->private_data;
486 return simple_read_from_buffer(buf, nbytes, ppos, up->data, up->size);
487}
488
489static int uhci_debug_release(struct inode *inode, struct file *file)
490{
491 struct uhci_debug *up = file->private_data;
492
493 kfree(up->data);
494 kfree(up);
495
496 return 0;
497}
498
Alan Stern8d402e12005-12-17 18:03:37 -0500499#undef uhci_debug_operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500static struct file_operations uhci_debug_operations = {
Alan Stern8d402e12005-12-17 18:03:37 -0500501 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .open = uhci_debug_open,
503 .llseek = uhci_debug_lseek,
504 .read = uhci_debug_read,
505 .release = uhci_debug_release,
506};
507
Alan Stern8d402e12005-12-17 18:03:37 -0500508#endif /* CONFIG_DEBUG_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Alan Stern8d402e12005-12-17 18:03:37 -0500510#else /* DEBUG */
511
512static inline void lprintk(char *buf)
513{}
514
515static inline int uhci_show_qh(struct uhci_qh *qh, char *buf,
516 int len, int space)
517{
518 return 0;
519}
520
521static inline int uhci_sprint_schedule(struct uhci_hcd *uhci,
522 char *buf, int len)
523{
524 return 0;
525}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527#endif