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

[PATCH] USB: isp116x-hcd cleanup

Sorry that it took so long. Here comes a cleanup patch that
addresses the remarks by Alexey Dobriyan about
gregkh-usb-usb-isp116x-hcd-add.patch EXCEPT the remark about
the typecasting of mem_flags argument for kcalloc; this will
be addressed in a later patch.

OlavCleanup of isp116x-hcd.

Signed off by: Olav Kongas <ok@artecdesign.ee>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Olav Kongas and committed by
Greg Kroah-Hartman
17f8bb73 ae0d6cce

+6 -10
+6 -10
drivers/usb/host/isp116x-hcd.c
··· 17 17 * The driver basically works. A number of people have used it with a range 18 18 * of devices. 19 19 * 20 - *The driver passes all usbtests 1-14. 20 + * The driver passes all usbtests 1-14. 21 21 * 22 22 * Suspending/resuming of root hub via sysfs works. Remote wakeup works too. 23 23 * And suspending/resuming of platform device works too. Suspend/resume ··· 229 229 struct isp116x_ep *ep; 230 230 struct urb *urb; 231 231 struct ptd *ptd; 232 - u16 toggle, dir, len; 232 + u16 toggle = 0, dir = PTD_DIR_SETUP, len; 233 233 234 234 for (ep = isp116x->atl_active; ep; ep = ep->active) { 235 235 BUG_ON(list_empty(&ep->hep->urb_list)); ··· 251 251 dir = PTD_DIR_OUT; 252 252 break; 253 253 case USB_PID_SETUP: 254 - toggle = 0; 255 - dir = PTD_DIR_SETUP; 256 254 len = sizeof(struct usb_ctrlrequest); 257 255 ep->data = urb->setup_packet; 258 256 break; ··· 262 264 ? PTD_DIR_OUT : PTD_DIR_IN; 263 265 break; 264 266 default: 265 - /* To please gcc */ 266 - toggle = dir = 0; 267 267 ERR("%s %d: ep->nextpid %d\n", __func__, __LINE__, 268 268 ep->nextpid); 269 - BUG_ON(1); 269 + BUG(); 270 270 } 271 271 272 272 ptd->count = PTD_CC_MSK | PTD_ACTIVE_MSK | PTD_TOGGLE(toggle); ··· 1050 1054 break; 1051 1055 case GetHubStatus: 1052 1056 DBG("GetHubStatus\n"); 1053 - *(__le32 *) buf = cpu_to_le32(0); 1057 + *(__le32 *) buf = 0; 1054 1058 break; 1055 1059 case GetPortStatus: 1056 1060 DBG("GetPortStatus\n"); ··· 1806 1810 ret = usb_suspend_device(hcd->self.root_hub, state); 1807 1811 if (!ret) { 1808 1812 dev->power.power_state = state; 1809 - INFO("%s suspended\n", (char *)hcd_name); 1813 + INFO("%s suspended\n", hcd_name); 1810 1814 } else 1811 - ERR("%s suspend failed\n", (char *)hcd_name); 1815 + ERR("%s suspend failed\n", hcd_name); 1812 1816 1813 1817 return ret; 1814 1818 }