From f15c6515fc23f83c51f3de272ca23d86b80e81b1 Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Thu, 12 Feb 2009 00:08:39 +0100 Subject: Coding style cleanup; update CHANGELOG Signed-off-by: Wolfgang Denk --- drivers/usb/usb_ehci_core.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'drivers/usb/usb_ehci_core.c') diff --git a/drivers/usb/usb_ehci_core.c b/drivers/usb/usb_ehci_core.c index 813f64abd3..4dbfb6688f 100644 --- a/drivers/usb/usb_ehci_core.c +++ b/drivers/usb/usb_ehci_core.c @@ -818,8 +818,10 @@ int usb_lowlevel_init(void) /* Start the host controller. */ cmd = ehci_readl(&hcor->or_usbcmd); - /* Philips, Intel, and maybe others need CMD_RUN before the - * root hub will detect new devices (why?); NEC doesn't */ + /* + * Philips, Intel, and maybe others need CMD_RUN before the + * root hub will detect new devices (why?); NEC doesn't + */ cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET); cmd |= CMD_RUN; ehci_writel(&hcor->or_usbcmd, cmd); -- cgit