aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/array.c')
0 files changed, 0 insertions, 0 deletions
l kwd">dev_err(&i2c->dev, "Failed to add sub devices\n"); return ret; } return 0; } static const struct i2c_device_id act8945a_i2c_id[] = { { "act8945a", 0 }, {} }; MODULE_DEVICE_TABLE(i2c, act8945a_i2c_id); static const struct of_device_id act8945a_of_match[] = { { .compatible = "active-semi,act8945a", }, {}, }; MODULE_DEVICE_TABLE(of, act8945a_of_match); static struct i2c_driver act8945a_i2c_driver = { .driver = { .name = "act8945a", .of_match_table = of_match_ptr(act8945a_of_match), }, .probe = act8945a_i2c_probe, .id_table = act8945a_i2c_id, }; static int __init act8945a_i2c_init(void) { return i2c_add_driver(&act8945a_i2c_driver); } subsys_initcall(act8945a_i2c_init);