Fix the USB code to find the headers after they were moved.
Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> Acked-by: Jordan Crouse <jordan.crouse@amd.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3575 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
6fbbd8080f
commit
29061a59b2
|
@ -27,7 +27,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "usb.h"
|
||||
#include <usb/usb.h>
|
||||
#include "uhci.h"
|
||||
#include <arch/virtual.h>
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#define __UHCI_H
|
||||
|
||||
#include <pci.h>
|
||||
#include "usb.h"
|
||||
#include <usb/usb.h>
|
||||
|
||||
typedef union {
|
||||
struct {
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include "usb.h"
|
||||
#include <usb/usb.h>
|
||||
|
||||
hci_t *usb_hcs = 0;
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "usb.h"
|
||||
#include <usb/usb.h>
|
||||
|
||||
static void
|
||||
usb_nop_destroy (usbdev_t *dev)
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "usb.h"
|
||||
#include <usb/usb.h>
|
||||
|
||||
enum { hid_subclass_none = 0, hid_subclass_boot = 1 };
|
||||
enum { hid_proto_boot = 0, hid_proto_report = 1 };
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "usb.h"
|
||||
#include <usb/usb.h>
|
||||
|
||||
// assume that host_to_device is overwritten if necessary
|
||||
#define DR_PORT gen_bmRequestType(host_to_device, class_type, other_recp)
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include "usb.h"
|
||||
#include <usb/usb.h>
|
||||
#include "uhci.h"
|
||||
#include "usbdisk.h"
|
||||
#include <usb/usbdisk.h>
|
||||
|
||||
/**
|
||||
* Initializes USB controller attached to PCI
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
*/
|
||||
|
||||
#include <arch/endian.h>
|
||||
#include "usb.h"
|
||||
#include "usbmsc.h"
|
||||
#include "usbdisk.h"
|
||||
#include <usb/usb.h>
|
||||
#include <usb/usbmsc.h>
|
||||
#include <usb/usbdisk.h>
|
||||
|
||||
enum {
|
||||
msc_subclass_rbc = 0x1,
|
||||
|
|
Loading…
Reference in New Issue