1 #include <linux/device.h>
2 #include <linux/kernel.h>
3 #include <linux/module.h>
4 #include <linux/slab.h>
6 #include <linux/delay.h>
7 #include <linux/regmap.h>
11 static int kxsd9_i2c_probe(struct i2c_client
*i2c
,
12 const struct i2c_device_id
*id
)
14 static const struct regmap_config config
= {
19 struct regmap
*regmap
;
21 regmap
= devm_regmap_init_i2c(i2c
, &config
);
23 dev_err(&i2c
->dev
, "Failed to register i2c regmap %d\n",
24 (int)PTR_ERR(regmap
));
25 return PTR_ERR(regmap
);
28 return kxsd9_common_probe(&i2c
->dev
,
33 static int kxsd9_i2c_remove(struct i2c_client
*client
)
35 return kxsd9_common_remove(&client
->dev
);
39 static const struct of_device_id kxsd9_of_match
[] = {
40 { .compatible
= "kionix,kxsd9", },
43 MODULE_DEVICE_TABLE(of
, kxsd9_of_match
);
45 #define kxsd9_of_match NULL
48 static const struct i2c_device_id kxsd9_i2c_id
[] = {
52 MODULE_DEVICE_TABLE(i2c
, kxsd9_i2c_id
);
54 static struct i2c_driver kxsd9_i2c_driver
= {
57 .of_match_table
= of_match_ptr(kxsd9_of_match
),
58 .pm
= &kxsd9_dev_pm_ops
,
60 .probe
= kxsd9_i2c_probe
,
61 .remove
= kxsd9_i2c_remove
,
62 .id_table
= kxsd9_i2c_id
,
64 module_i2c_driver(kxsd9_i2c_driver
);