sensors: isl29035: move isl29035 to own directory under drivers/sensor/
Change-Id: Ia0164f2891b1b2f3d19c63b8311d71e1f9abeeb5 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
cc43b3017a
commit
bdcf651cd1
7 changed files with 7 additions and 6 deletions
|
@ -72,7 +72,7 @@ source "drivers/sensor/hp206c/Kconfig"
|
|||
|
||||
source "drivers/sensor/hts221/Kconfig"
|
||||
|
||||
source "drivers/sensor/Kconfig.isl29035"
|
||||
source "drivers/sensor/isl29035/Kconfig"
|
||||
|
||||
source "drivers/sensor/Kconfig.lis3dh"
|
||||
|
||||
|
|
|
@ -11,8 +11,7 @@ obj-$(CONFIG_HDC1008) += hdc1008/
|
|||
obj-$(CONFIG_HMC5883L) += hmc5883l/
|
||||
obj-$(CONFIG_HP206C) += hp206c/
|
||||
obj-$(CONFIG_HTS221) += hts221/
|
||||
obj-$(CONFIG_ISL29035) += sensor_isl29035.o
|
||||
obj-$(CONFIG_ISL29035_TRIGGER) += sensor_isl29035_trigger.o
|
||||
obj-$(CONFIG_ISL29035) += isl29035/
|
||||
obj-$(CONFIG_LIS3DH) += sensor_lis3dh.o
|
||||
obj-$(CONFIG_LIS3DH_TRIGGER) += sensor_lis3dh_trigger.o
|
||||
obj-$(CONFIG_LIS3MDL) += sensor_lis3mdl.o
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Kconfig.isl29035 - ISL29035 light sensor configuration options
|
||||
# Kconfig - ISL29035 light sensor configuration options
|
||||
|
||||
#
|
||||
# Copyright (c) 2016 Intel Corporation
|
2
drivers/sensor/isl29035/Makefile
Normal file
2
drivers/sensor/isl29035/Makefile
Normal file
|
@ -0,0 +1,2 @@
|
|||
obj-$(CONFIG_ISL29035) += isl29035.o
|
||||
obj-$(CONFIG_ISL29035_TRIGGER) += isl29035_trigger.o
|
|
@ -22,7 +22,7 @@
|
|||
#include <sensor.h>
|
||||
#include <misc/__assert.h>
|
||||
|
||||
#include "sensor_isl29035.h"
|
||||
#include "isl29035.h"
|
||||
|
||||
static int isl29035_sample_fetch(struct device *dev, enum sensor_channel chan)
|
||||
{
|
|
@ -20,7 +20,7 @@
|
|||
#include <misc/util.h>
|
||||
#include <nanokernel.h>
|
||||
|
||||
#include "sensor_isl29035.h"
|
||||
#include "isl29035.h"
|
||||
|
||||
extern struct isl29035_driver_data isl29035_data;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue