This patch implements BMM150 driver with polling mode and its tested with original BMM150 sensor hardware. Driver works on I2C interface as of now. Following datasheet is taken as reference while developing driver. http://www.mouser.com/ds/2/783/BST-BMM150-DS001-01-786480.pdf Signed-off-by: Punit Vara <punit.vara@intel.com>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
ccflags-y +=-I$(srctree)/drivers
|
|
|
|
obj-$(CONFIG_ADXL362) += adxl362/
|
|
obj-$(CONFIG_AK8975) += ak8975/
|
|
obj-$(CONFIG_APDS9960) += apds9960/
|
|
obj-$(CONFIG_BMA280) += bma280/
|
|
obj-$(CONFIG_BMC150_MAGN) += bmc150_magn/
|
|
obj-$(CONFIG_BME280) += bme280/
|
|
obj-$(CONFIG_BMG160) += bmg160/
|
|
obj-$(CONFIG_BMI160) += bmi160/
|
|
obj-$(CONFIG_BMM150) += bmm150/
|
|
obj-$(CONFIG_DHT) += dht/
|
|
obj-$(CONFIG_FXAS21002) += fxas21002/
|
|
obj-$(CONFIG_FXOS8700) += fxos8700/
|
|
obj-$(CONFIG_HDC1008) += hdc1008/
|
|
obj-$(CONFIG_HMC5883L) += hmc5883l/
|
|
obj-$(CONFIG_HP206C) += hp206c/
|
|
obj-$(CONFIG_HTS221) += hts221/
|
|
obj-$(CONFIG_ISL29035) += isl29035/
|
|
obj-$(CONFIG_LIS2DH) += lis2dh/
|
|
obj-$(CONFIG_LIS3DH) += lis3dh/
|
|
obj-$(CONFIG_LIS3MDL) += lis3mdl/
|
|
obj-$(CONFIG_LPS22HB) += lps22hb/
|
|
obj-$(CONFIG_LPS25HB) += lps25hb/
|
|
obj-$(CONFIG_LSM6DS0) += lsm6ds0/
|
|
obj-$(CONFIG_LSM6DSL) += lsm6dsl/
|
|
obj-$(CONFIG_LSM9DS0_GYRO) += lsm9ds0_gyro/
|
|
obj-$(CONFIG_LSM9DS0_MFD) += lsm9ds0_mfd/
|
|
obj-$(CONFIG_MAX30101) += max30101/
|
|
obj-$(CONFIG_MAX44009) += max44009/
|
|
obj-$(CONFIG_MCP9808) += mcp9808/
|
|
obj-$(CONFIG_MPU6050) += mpu6050/
|
|
obj-$(CONFIG_TEMP_NRF5) += nrf5/
|
|
obj-$(CONFIG_SHT3XD) += sht3xd/
|
|
obj-$(CONFIG_SX9500) += sx9500/
|
|
obj-$(CONFIG_TH02) += th02/
|
|
obj-$(CONFIG_TMP007) += tmp007/
|
|
obj-$(CONFIG_TMP112) += tmp112/
|