gpio: rename files
The naming convention used in the source is for there to be an _ and not a - in the file. Fixing GPIO to be consistent with the os naming conventions. Change-Id: Ifc4356c14b52e2cc2411a7445b44c7cb57d2765c Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
parent
e899bb60ac
commit
6bf971915f
7 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
ccflags-y +=-I$(srctree)/drivers
|
ccflags-y +=-I$(srctree)/drivers
|
||||||
|
|
||||||
obj-$(CONFIG_GPIO_DW) += gpio-dw.o
|
obj-$(CONFIG_GPIO_DW) += gpio_dw.o
|
||||||
obj-$(CONFIG_GPIO_PCAL9535A) += gpio-pcal9535a.o
|
obj-$(CONFIG_GPIO_PCAL9535A) += gpio_pcal9535a.o
|
||||||
obj-$(CONFIG_GPIO_MMIO) += gpio-mmio.o
|
obj-$(CONFIG_GPIO_MMIO) += gpio_mmio.o
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
#include <nanokernel.h>
|
#include <nanokernel.h>
|
||||||
#include <gpio.h>
|
#include <gpio.h>
|
||||||
#include <gpio/gpio-dw.h>
|
#include "gpio_dw.h"
|
||||||
#include <board.h>
|
#include <board.h>
|
||||||
#include <sys_io.h>
|
#include <sys_io.h>
|
||||||
#include <init.h>
|
#include <init.h>
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
#include <gpio.h>
|
#include <gpio.h>
|
||||||
|
|
||||||
#include "gpio-mmio.h"
|
#include "gpio_mmio.h"
|
||||||
|
|
||||||
#if defined(CONFIG_GPIO_MMIO_0_ACCESS_MM) \
|
#if defined(CONFIG_GPIO_MMIO_0_ACCESS_MM) \
|
||||||
|| defined(CONFIG_GPIO_MMIO_1_ACCESS_MM)
|
|| defined(CONFIG_GPIO_MMIO_1_ACCESS_MM)
|
|
@ -23,7 +23,7 @@
|
||||||
#include <gpio.h>
|
#include <gpio.h>
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
|
|
||||||
#include "gpio-pcal9535a.h"
|
#include "gpio_pcal9535a.h"
|
||||||
|
|
||||||
#ifndef CONFIG_GPIO_PCAL9535A_DEBUG
|
#ifndef CONFIG_GPIO_PCAL9535A_DEBUG
|
||||||
#define DBG(...) {;}
|
#define DBG(...) {;}
|
Loading…
Add table
Add a link
Reference in a new issue