Fishwaldo commented on code in PR #19745: URL: https://github.com/apache/nuttx/pull/19745#discussion_r3788718359
########## drivers/usbhost/usbhost_xhci_pci.c: ########## @@ -18,480 +20,68 @@ * ****************************************************************************/ +/* Finding an xHCI controller on a PCI bus. + * + * The controller itself is described by its specification and driven by + * usbhost_xhci.c, which is the same code wherever the part is fitted. This + * file is only the part that is true of PCI and of nothing else: which + * device identifiers to answer to, how to switch a device on and find its + * register window, and how its interrupt is arranged. + */ + /**************************************************************************** * Included Files ****************************************************************************/ #include <nuttx/config.h> #include <assert.h> -#include <nuttx/debug.h> +#include <debug.h> Review Comment: Fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
