zephyr/drivers
Kumar Gala 8de6778e90 sensor: lis2dh: Fix gcc8 compiler warning
We get the following warning with sdk-ng:

	drivers/sensor/lis2dh/lis2dh.c:210:38: error: bitwise comparison
	always evaluates to false [-Werror=tautological-compare]

	if ((value & LIS2DH_LP_EN_BIT_MASK) == 1 && ...
                                      ^~
The test needs to be:
	(value & LIS2DH_LP_EN_BIT_MASK) == LIS2DH_LP_EN_BIT_MASK

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2019-01-30 17:19:41 -06:00
..
adc drivers: adc: Fix handling of invalid sampling requests 2019-01-17 16:58:21 -05:00
aio drivers: Add 'U' to unsigned variable assignments 2018-12-04 22:51:56 -05:00
audio audio: tlv320dac310x: Convert to new DT_<COMPAT>_<INSTANCE> defines 2019-01-29 19:24:23 -06:00
bluetooth drivers: Add 'U' to unsigned variable assignments 2018-12-04 22:51:56 -05:00
can drivers: Add 'U' to unsigned variable assignments 2018-12-04 22:51:56 -05:00
clock_control clock_control: RV32M1: introduce PCC driver / DT bindings 2019-01-25 11:59:46 -05:00
console net: websocket: Remove the websocket as HTTP APIs are removed 2019-01-25 11:21:20 -05:00
counter drivers: Add 'U' to unsigned variable assignments 2018-12-04 22:51:56 -05:00
crypto drivers: Add 'U' to unsigned variable assignments 2018-12-04 22:51:56 -05:00
display display: ili9340: Convert to new DT_<COMPAT>_<INSTANCE> defines 2019-01-29 15:25:46 -06:00
dma dma: stm32: Configure bus width and burst size for memcpy mode 2018-12-13 07:33:30 -06:00
entropy drivers: entropy: mcux_trng: get the base address from the device tree 2019-01-10 21:22:15 -06:00
ethernet drivers: eth: gmac: fix IRQ names following import of latest HAL 2019-01-30 10:43:45 -06:00
flash drivers: flash: SAM E70: fix warnings when built with newlib 2019-01-30 10:27:09 -06:00
gpio gpio: mcux_igpio: Cleanup old CONFIG_ symbols 2019-01-30 13:22:54 -06:00
i2c drivers: i2c: i2c_sbcon: Convert to new DT_<COMPAT>_<INSTANCE> defines 2019-01-25 08:55:06 -06:00
i2s drivers/i2s_ll_stm32.c: pass proper PLLR param when setting I2S PLL 2019-01-24 09:35:53 -06:00
ieee802154 drivers: ieee802154: nrf5: Align to new radio driver API 2019-01-29 10:37:47 +01:00
interrupt_controller interrupt_controller: RV32M1: add intmux driver / DT bindings 2019-01-25 11:59:46 -05:00
ipm drivers: ipm: ipm_quark_se: Remove object declaration from header 2018-12-07 10:32:41 -05:00
led drivers: Add 'U' to unsigned variable assignments 2018-12-04 22:51:56 -05:00
led_strip led_strip: lpd880x: Add Device Tree support 2019-01-29 12:04:07 -06:00
modem drivers: modem: wncm14a2a: allow more time for getting IMEI data 2019-01-30 10:25:52 -06:00
net net/ethernet: Remove usage of net_pkt_ll() function 2018-12-14 14:16:37 +01:00
neural_net drivers: intel_gna: replace k_alert with work queue 2019-01-16 21:34:07 -05:00
pci pci: General code cleanup 2018-12-07 11:32:45 -05:00
pinmux pinmux: remove pinmux dev 2019-01-30 16:29:40 -06:00
ptp_clock drivers: ptp_clock: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
pwm drivers: pwm: nrf: Correct dependency of PWM_NRFX Kconfig option 2019-01-21 10:13:34 +01:00
rtc drivers: stm32: check clock_control_on return value 2018-12-07 11:31:48 -05:00
sensor sensor: lis2dh: Fix gcc8 compiler warning 2019-01-30 17:19:41 -06:00
serial drivers: uart_nsim: Add device tree support 2019-01-30 12:27:37 -06:00
spi drivers: spi_sam: initialize tx and rx 2019-01-14 14:07:52 -05:00
timer drivers: timer: Add RTC-based system timer for Atmel SAM0 series MCU 2019-01-29 17:58:05 +01:00
usb drivers: nordic: usb: USBD event handling rework 2019-01-23 16:55:15 +01:00
watchdog drivers: wdog: cmsdk: Convert to new DT_<COMPAT>_<INSTANCE> defines 2019-01-25 08:55:06 -06:00
wifi wifi: winc1500: Convert to new DT_<COMPAT>_<INSTANCE> defines 2019-01-28 10:39:59 -06:00
CMakeLists.txt drivers: neural_net: Use correct Kconfig variable 2018-11-09 16:52:32 -05:00
Kconfig kconfig: intel_s1000: Add neural_net Kconfig 2018-11-08 17:08:19 -05:00