Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fusbh200: kill fusbh200_vdbg

With dynamic debugging this log level is no longer supported.
The decision which messages are interesting is done in user space.

Signed-off-by: Oliver Neukum <oneukum@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Oliver Neukum and committed by
Greg Kroah-Hartman
0b5fa3b2 c9472a29

+5 -11
+5 -11
drivers/usb/host/fusbh200-hcd.c
··· 104 104 #define fusbh200_warn(fusbh200, fmt, args...) \ 105 105 dev_warn (fusbh200_to_hcd(fusbh200)->self.controller , fmt , ## args ) 106 106 107 - #ifdef VERBOSE_DEBUG 108 - # define fusbh200_vdbg fusbh200_dbg 109 - #else 110 - static inline void fusbh200_vdbg(struct fusbh200_hcd *fusbh200, ...) {} 111 - #endif 112 - 113 107 /* check the values in the HCSPARAMS register 114 108 * (host controller _Structural_ parameters) 115 109 * see EHCI spec, Table 2-4 for each value ··· 1303 1309 fusbh200_writel(fusbh200, STS_IAA, &fusbh200->regs->status); 1304 1310 } 1305 1311 1306 - fusbh200_vdbg(fusbh200, "IAA watchdog: status %x cmd %x\n", 1312 + fusbh200_dbg(fusbh200, "IAA watchdog: status %x cmd %x\n", 1307 1313 status, cmd); 1308 1314 end_unlink_async(fusbh200); 1309 1315 } ··· 1753 1759 * which can be fine if this root hub has a 1754 1760 * transaction translator built in. 1755 1761 */ 1756 - fusbh200_vdbg (fusbh200, "port %d reset\n", wIndex + 1); 1762 + fusbh200_dbg(fusbh200, "port %d reset\n", wIndex + 1); 1757 1763 temp |= PORT_RESET; 1758 1764 temp &= ~PORT_PE; 1759 1765 ··· 2236 2242 status = -EPROTO; 2237 2243 } 2238 2244 2239 - fusbh200_vdbg (fusbh200, 2245 + fusbh200_dbg(fusbh200, 2240 2246 "dev%d ep%d%s qtd token %08x --> status %d\n", 2241 2247 usb_pipedevice (urb->pipe), 2242 2248 usb_pipeendpoint (urb->pipe), ··· 4523 4529 if (unlikely (list_empty(&stream->td_list))) { 4524 4530 fusbh200_to_hcd(fusbh200)->self.bandwidth_allocated 4525 4531 += stream->bandwidth; 4526 - fusbh200_vdbg (fusbh200, 4532 + fusbh200_dbg(fusbh200, 4527 4533 "schedule devp %s ep%d%s-iso period %d start %d.%d\n", 4528 4534 urb->dev->devpath, stream->bEndpointAddress & 0x0f, 4529 4535 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out", ··· 4654 4660 if (unlikely(list_is_singular(&stream->td_list))) { 4655 4661 fusbh200_to_hcd(fusbh200)->self.bandwidth_allocated 4656 4662 -= stream->bandwidth; 4657 - fusbh200_vdbg (fusbh200, 4663 + fusbh200_dbg(fusbh200, 4658 4664 "deschedule devp %s ep%d%s-iso\n", 4659 4665 dev->devpath, stream->bEndpointAddress & 0x0f, 4660 4666 (stream->bEndpointAddress & USB_DIR_IN) ? "in" : "out");