From a046c487d0569466558089bc9d2a2fd2b162c031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Mon, 28 May 2007 12:52:13 +0000 Subject: [PATCH] Never trust someone else's patch until you built it... Sorry guy, reverted that part, breaks the build here. Either fix the types everywhere or don't fix at all. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21260 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/busses/usb/uhci_hardware.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/add-ons/kernel/busses/usb/uhci_hardware.h b/src/add-ons/kernel/busses/usb/uhci_hardware.h index a29c25f03d..e4306f0a91 100644 --- a/src/add-ons/kernel/busses/usb/uhci_hardware.h +++ b/src/add-ons/kernel/busses/usb/uhci_hardware.h @@ -87,10 +87,10 @@ typedef struct { // Hardware part - uint32 link_phy; // Link to the next TD/QH + addr_t link_phy; // Link to the next TD/QH uint32 status; // Status field uint32 token; // Contains the packet header (where it needs to be sent) - uint32 buffer_phy; // A pointer to the buffer with the actual packet + void *buffer_phy; // A pointer to the buffer with the actual packet // Software part addr_t this_phy; // A physical pointer to this address void *link_log; // Pointer to the next logical TD/QT @@ -142,8 +142,8 @@ typedef struct typedef struct { // Hardware part - uint32 link_phy; // Link to the next TD/QH - uint32 element_phy; // Pointer to the first element in the queue + addr_t link_phy; // Link to the next TD/QH + addr_t element_phy; // Pointer to the first element in the queue // Software part addr_t this_phy; // The physical pointer to this address void *link_log; // Pointer to the next logical TD/QH