usb: fix local includes and add usb namespace

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-09-12 16:27:08 -04:00 committed by Anas Nashif
parent fde34dd54b
commit 18a33edd39
4 changed files with 7 additions and 7 deletions

View file

@ -17,8 +17,8 @@
#include <bluetooth/hci_raw.h>
#include <bluetooth/l2cap.h>
#include "usb_device.h"
#include "usb_common.h"
#include <usb/usb_device.h>
#include <usb/usb_common.h>
#define BTUSB_BUFFER_SIZE 64

View file

@ -45,8 +45,8 @@
#include <misc/byteorder.h>
#include <logging/sys_log.h>
#include "cdc_acm.h"
#include "usb_device.h"
#include "usb_common.h"
#include <usb/usb_device.h>
#include <usb/usb_common.h>
#include "webusb_serial.h"
#ifndef CONFIG_UART_INTERRUPT_DRIVEN

View file

@ -41,7 +41,7 @@
#define __WEBUSB_SERIAL_H__
#include <device.h>
#include "usb_device.h"
#include <usb/usb_device.h>
/* BOS descriptor type */
#define DESCRIPTOR_TYPE_BOS 0x0f

View file

@ -39,8 +39,8 @@
#include <misc/__assert.h>
#include <disk_access.h>
#include "mass_storage.h"
#include "usb_device.h"
#include "usb_common.h"
#include <usb/usb_device.h>
#include <usb/usb_common.h>
#define SYS_LOG_LEVEL CONFIG_SYS_LOG_USB_MASS_STORAGE_LEVEL
#include <logging/sys_log.h>