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:
Anas Nashif 2016-10-15 08:19:56 -04:00 committed by Anas Nashif
commit bdcf651cd1
7 changed files with 7 additions and 6 deletions

View file

@ -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"

View file

@ -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

View file

@ -1,4 +1,4 @@
# Kconfig.isl29035 - ISL29035 light sensor configuration options
# Kconfig - ISL29035 light sensor configuration options
#
# Copyright (c) 2016 Intel Corporation

View file

@ -0,0 +1,2 @@
obj-$(CONFIG_ISL29035) += isl29035.o
obj-$(CONFIG_ISL29035_TRIGGER) += isl29035_trigger.o

View file

@ -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)
{

View file

@ -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;