sensors: sx9500: move sx9500 to own directory under drivers/sensor/

Change-Id: Ifc7dfd8a28d33f140415ca178b56d35e51aff178
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2016-10-15 08:20:02 -04:00
commit bdfeda0a73
7 changed files with 7 additions and 6 deletions

View file

@ -94,7 +94,7 @@ source "drivers/sensor/mpu6050/Kconfig"
source "drivers/sensor/sht3xd/Kconfig"
source "drivers/sensor/Kconfig.sx9500"
source "drivers/sensor/sx9500/Kconfig"
source "drivers/sensor/th02/Kconfig"

View file

@ -22,8 +22,7 @@ obj-$(CONFIG_MAX44009) += max44009/
obj-$(CONFIG_MCP9808) += mcp9808/
obj-$(CONFIG_MPU6050) += mpu6050/
obj-$(CONFIG_SHT3XD) += sht3xd/
obj-$(CONFIG_SX9500) += sensor_sx9500.o
obj-$(CONFIG_SX9500_TRIGGER) += sensor_sx9500_trigger.o
obj-$(CONFIG_SX9500) += sx9500/
obj-$(CONFIG_TH02) += th02/
obj-$(CONFIG_TMP007) += sensor_tmp007.o
obj-$(CONFIG_TMP007_TRIGGER) += sensor_tmp007_trigger.o

View file

@ -1,4 +1,4 @@
# Kconfig.sx9500 - SX9500 SAR proximity sensor configuration options
# Kconfig - SX9500 SAR proximity sensor configuration options
#
# Copyright (c) 2016 Intel Corporation

View file

@ -0,0 +1,2 @@
obj-$(CONFIG_SX9500) += sx9500.o
obj-$(CONFIG_SX9500_TRIGGER) += sx9500_trigger.o

View file

@ -25,7 +25,7 @@
#include <gpio.h>
#include <misc/__assert.h>
#include "sensor_sx9500.h"
#include "sx9500.h"
static uint8_t sx9500_reg_defaults[] = {
/*

View file

@ -21,7 +21,7 @@
#include <sensor.h>
#include <gpio.h>
#include <misc/util.h>
#include "sensor_sx9500.h"
#include "sx9500.h"
#ifdef CONFIG_SX9500_TRIGGER_OWN_FIBER
static char __stack sx9500_fiber_stack[CONFIG_SX9500_FIBER_STACK_SIZE];