]> git.pld-linux.org Git - packages/kernel.git/blame - linux-2.4.13-usb-ohci.patch
- ported from linux-2.4.25-atmdd.patch
[packages/kernel.git] / linux-2.4.13-usb-ohci.patch
CommitLineData
605927fd
JR
1diff -u --recursive --new-file v2.4.13/linux/drivers/usb/usb-ohci.h linux/drivers/usb/usb-ohci.h
2--- v2.4.13/linux/drivers/usb/usb-ohci.h Mon Aug 27 12:41:45 2001
3+++ linux/drivers/usb/usb-ohci.h Wed Oct 24 08:26:12 2001
4@@ -373,7 +373,7 @@
5
6 typedef struct ohci {
7 struct ohci_hcca *hcca; /* hcca */
8- u32 hcca_dma;
9+ dma_addr_t hcca_dma;
10
11 int irq;
12 int disabled; /* e.g. got a UE, we're hung */
13diff -u --recursive --new-file v2.4.13/linux/drivers/usb/usb-uhci-debug.h linux/drivers/usb/usb-uhci-debug.h
14--- v2.4.13/linux/drivers/usb/usb-uhci-debug.h Wed May 16 10:31:27 2001
15+++ linux/drivers/usb/usb-uhci-debug.h Wed Oct 24 08:26:51 2001
16@@ -5,7 +5,7 @@
17 dbg("qh has not QH_TYPE");
18 return;
19 }
20- dbg("QH @ %p/%08X:", qh, qh->dma_addr);
21+ dbg("QH @ %p/%08llX:", qh, (u64)qh->dma_addr);
22
23 if (qh->hw.qh.head & UHCI_PTR_TERM)
24 dbg(" Head Terminate");
This page took 0.184775 seconds and 4 git commands to generate.