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

View File

@ -191,7 +191,7 @@ status_t Stack::AllocateChunk( void **log , void **phy , uint8 size )
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;
*log = (void *)listhead;

View File

@ -22,7 +22,7 @@
#ifndef USB_P
#define USB_P
#include <usbspec_p.h>
#include "usbspec_p.h"
/* ++++++++++
Forward declarations

View File

@ -43,7 +43,8 @@
#include "ohci.h"
#include "ohci_hardware.h"
#include <usb_p.h>
#include "usb_p.h"
//------------------------------------------------------
// OHCI:: Reverse the bits in a value between 0 and 31
// (Section 3.3.2)

View File

@ -28,7 +28,7 @@
// OHCI:: Includes
// ---------------------------
#include <usb_p.h>
#include "usb_p.h"
#include "ohci_software.h"
struct pci_info;

View File

@ -28,7 +28,7 @@
// OHCI:: Includes
// ---------------------------
#include <usb_p.h>
#include "usb_p.h"
#include "ohci_hardware.h"
// ------------------------------------

View File

@ -27,7 +27,7 @@
#include "uhci.h"
#include "uhci_hardware.h"
#include <usb_p.h>
#include "usb_p.h"
/* ++++++++++

View File

@ -22,7 +22,7 @@
#ifndef UHCI_H
#define UHCI_H
#include <usb_p.h>
#include "usb_p.h"
#include "uhci_hardware.h"
struct pci_info;