tcp: tsq: add shortcut in tcp_tasklet_func()
[linux-2.6/btrfs-unstable.git] / drivers / iio / magnetometer / st_magn_i2c.c
blob8aa37af306edd61f83424f77314a922523a8c2f1
1 /*
2 * STMicroelectronics magnetometers driver
4 * Copyright 2012-2013 STMicroelectronics Inc.
6 * Denis Ciocca <denis.ciocca@st.com>
8 * Licensed under the GPL-2.
9 */
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/i2c.h>
15 #include <linux/iio/iio.h>
17 #include <linux/iio/common/st_sensors.h>
18 #include <linux/iio/common/st_sensors_i2c.h>
19 #include "st_magn.h"
21 #ifdef CONFIG_OF
22 static const struct of_device_id st_magn_of_match[] = {
24 .compatible = "st,lsm303dlh-magn",
25 .data = LSM303DLH_MAGN_DEV_NAME,
28 .compatible = "st,lsm303dlhc-magn",
29 .data = LSM303DLHC_MAGN_DEV_NAME,
32 .compatible = "st,lsm303dlm-magn",
33 .data = LSM303DLM_MAGN_DEV_NAME,
36 .compatible = "st,lis3mdl-magn",
37 .data = LIS3MDL_MAGN_DEV_NAME,
40 .compatible = "st,lsm303agr-magn",
41 .data = LSM303AGR_MAGN_DEV_NAME,
43 {},
45 MODULE_DEVICE_TABLE(of, st_magn_of_match);
46 #else
47 #define st_magn_of_match NULL
48 #endif
50 static int st_magn_i2c_probe(struct i2c_client *client,
51 const struct i2c_device_id *id)
53 struct iio_dev *indio_dev;
54 struct st_sensor_data *mdata;
55 int err;
57 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*mdata));
58 if (!indio_dev)
59 return -ENOMEM;
61 mdata = iio_priv(indio_dev);
62 st_sensors_of_i2c_probe(client, st_magn_of_match);
64 st_sensors_i2c_configure(indio_dev, client, mdata);
66 err = st_magn_common_probe(indio_dev);
67 if (err < 0)
68 return err;
70 return 0;
73 static int st_magn_i2c_remove(struct i2c_client *client)
75 struct iio_dev *indio_dev = i2c_get_clientdata(client);
76 st_magn_common_remove(indio_dev);
78 return 0;
81 static const struct i2c_device_id st_magn_id_table[] = {
82 { LSM303DLH_MAGN_DEV_NAME },
83 { LSM303DLHC_MAGN_DEV_NAME },
84 { LSM303DLM_MAGN_DEV_NAME },
85 { LIS3MDL_MAGN_DEV_NAME },
86 { LSM303AGR_MAGN_DEV_NAME },
87 {},
89 MODULE_DEVICE_TABLE(i2c, st_magn_id_table);
91 static struct i2c_driver st_magn_driver = {
92 .driver = {
93 .name = "st-magn-i2c",
94 .of_match_table = of_match_ptr(st_magn_of_match),
96 .probe = st_magn_i2c_probe,
97 .remove = st_magn_i2c_remove,
98 .id_table = st_magn_id_table,
100 module_i2c_driver(st_magn_driver);
102 MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
103 MODULE_DESCRIPTION("STMicroelectronics magnetometers i2c driver");
104 MODULE_LICENSE("GPL v2");