Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / drivers / iio / imu / bmi160 / bmi160_spi.c
blobd34dfdfd1a7dfbdd8c8e8a19ccbdb1843315fb76
1 /*
2 * BMI160 - Bosch IMU, SPI bits
4 * Copyright (c) 2016, Intel Corporation.
6 * This file is subject to the terms and conditions of version 2 of
7 * the GNU General Public License. See the file COPYING in the main
8 * directory of this archive for more details.
9 */
10 #include <linux/acpi.h>
11 #include <linux/module.h>
12 #include <linux/of.h>
13 #include <linux/regmap.h>
14 #include <linux/spi/spi.h>
16 #include "bmi160.h"
18 static int bmi160_spi_probe(struct spi_device *spi)
20 struct regmap *regmap;
21 const struct spi_device_id *id = spi_get_device_id(spi);
23 regmap = devm_regmap_init_spi(spi, &bmi160_regmap_config);
24 if (IS_ERR(regmap)) {
25 dev_err(&spi->dev, "Failed to register spi regmap %d\n",
26 (int)PTR_ERR(regmap));
27 return PTR_ERR(regmap);
29 return bmi160_core_probe(&spi->dev, regmap, id->name, true);
32 static int bmi160_spi_remove(struct spi_device *spi)
34 bmi160_core_remove(&spi->dev);
36 return 0;
39 static const struct spi_device_id bmi160_spi_id[] = {
40 {"bmi160", 0},
43 MODULE_DEVICE_TABLE(spi, bmi160_spi_id);
45 static const struct acpi_device_id bmi160_acpi_match[] = {
46 {"BMI0160", 0},
47 { },
49 MODULE_DEVICE_TABLE(acpi, bmi160_acpi_match);
51 #ifdef CONFIG_OF
52 static const struct of_device_id bmi160_of_match[] = {
53 { .compatible = "bosch,bmi160" },
54 { },
56 MODULE_DEVICE_TABLE(of, bmi160_of_match);
57 #endif
59 static struct spi_driver bmi160_spi_driver = {
60 .probe = bmi160_spi_probe,
61 .remove = bmi160_spi_remove,
62 .id_table = bmi160_spi_id,
63 .driver = {
64 .acpi_match_table = ACPI_PTR(bmi160_acpi_match),
65 .of_match_table = of_match_ptr(bmi160_of_match),
66 .name = "bmi160_spi",
69 module_spi_driver(bmi160_spi_driver);
71 MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com");
72 MODULE_DESCRIPTION("Bosch BMI160 SPI driver");
73 MODULE_LICENSE("GPL v2");