Fixed building of the UHCI and OHCI modules [reported by AndyBe].

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15914 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-01-11 20:04:40 +00:00
parent 5a2b3bac82
commit 67c3d9ebe5
7 changed files with 8 additions and 7 deletions
@@ -191,7 +191,7 @@ status_t Stack::AllocateChunk( void **log , void **phy , uint8 size )
return B_ERROR; return B_ERROR;
} }
dprintf( "USB Stack::Allocate() listhead: %l\n" , listhead ); dprintf( "USB Stack::Allocate() listhead: %ld\n" , listhead );
memory_chunk *chunk = (memory_chunk *)listhead; memory_chunk *chunk = (memory_chunk *)listhead;
*log = (void *)listhead; *log = (void *)listhead;
+1 -1
View File
@@ -22,7 +22,7 @@
#ifndef USB_P #ifndef USB_P
#define USB_P #define USB_P
#include <usbspec_p.h> #include "usbspec_p.h"
/* ++++++++++ /* ++++++++++
Forward declarations Forward declarations
+2 -1
View File
@@ -43,7 +43,8 @@
#include "ohci.h" #include "ohci.h"
#include "ohci_hardware.h" #include "ohci_hardware.h"
#include <usb_p.h> #include "usb_p.h"
//------------------------------------------------------ //------------------------------------------------------
// OHCI:: Reverse the bits in a value between 0 and 31 // OHCI:: Reverse the bits in a value between 0 and 31
// (Section 3.3.2) // (Section 3.3.2)
+1 -1
View File
@@ -28,7 +28,7 @@
// OHCI:: Includes // OHCI:: Includes
// --------------------------- // ---------------------------
#include <usb_p.h> #include "usb_p.h"
#include "ohci_software.h" #include "ohci_software.h"
struct pci_info; struct pci_info;
@@ -28,7 +28,7 @@
// OHCI:: Includes // OHCI:: Includes
// --------------------------- // ---------------------------
#include <usb_p.h> #include "usb_p.h"
#include "ohci_hardware.h" #include "ohci_hardware.h"
// ------------------------------------ // ------------------------------------
+1 -1
View File
@@ -27,7 +27,7 @@
#include "uhci.h" #include "uhci.h"
#include "uhci_hardware.h" #include "uhci_hardware.h"
#include <usb_p.h> #include "usb_p.h"
/* ++++++++++ /* ++++++++++
+1 -1
View File
@@ -22,7 +22,7 @@
#ifndef UHCI_H #ifndef UHCI_H
#define UHCI_H #define UHCI_H
#include <usb_p.h> #include "usb_p.h"
#include "uhci_hardware.h" #include "uhci_hardware.h"
struct pci_info; struct pci_info;