On Tue, Aug 09, 2005 at 07:03:21AM -0500, John Otken wrote: > This updated patch adds support for the AMCC 440EP on-chip > OHCI USB host controller. I tested it on the Bamboo board > using the 2.6.13-rc6 kernel. >
> @@ -194,8 +194,37 @@ static struct resource usb_gadget_resour > }, > }; > > +static struct resource ohci_usb_resources[] = { > + [0] = { > + .start = 0x0EF601000, > + .end = 0x0EF60107F, > + .flags = IORESOURCE_MEM, > + }, > + [1] = { > + .start = 40, > + .end = 40, > + .flags = IORESOURCE_IRQ, > + }, > +}; > + > static u64 dma_mask = 0xffffffffULL; > > +#include <asm/usb.h> Let's place #include directives at the top of the source file. -- Eugene