drivers: espi: move header to include/drivers

Driver APIs need to go into include/drivers/.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2019-10-01 10:49:26 -04:00
parent 1af66a9cc5
commit 9d70a87f20
4 changed files with 3 additions and 3 deletions

View file

@ -217,6 +217,7 @@
/include/drivers/can.h @alexanderwachter
/include/drivers/counter.h @nordic-krch
/include/drivers/display.h @vanwinkeljan
/include/drivers/espi.h @albertofloyd @franciscomunoz @scottwcpg
/include/drivers/bluetooth/ @joerchan @jhedberg @Vudentz
/include/drivers/led/ht16k33.h @henrikbrixandersen
/include/drivers/interrupt_controller/ @andrewboie @gnuless
@ -255,7 +256,6 @@
/include/init.h @andrewboie @andyross
/include/irq.h @andrewboie @andyross
/include/irq_offload.h @andrewboie @andyross
/include/espi.h @albertofloyd @franciscomunoz @scottwcpg
/include/kernel.h @andrewboie @andyross
/include/kernel_version.h @andrewboie @andyross
/include/linker/app_smem*.ld @andrewboie

View file

@ -7,7 +7,7 @@
#include <kernel.h>
#include <soc.h>
#include <errno.h>
#include <espi.h>
#include <drivers/espi.h>
#include <logging/log.h>
#include "espi_utils.h"

View file

@ -10,7 +10,7 @@
#include <device.h>
#include <soc.h>
#include <gpio.h>
#include <espi.h>
#include <drivers/espi.h>
#ifdef CONFIG_ESPI_GPIO_DEV_NEEDED
static struct device *gpio_dev0;