mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
iio: light: al3320a allow module autoload and polish
- allow autoloading when build as module and defined inside DT Signed-off-by: David Heidelberg <david@ixit.cz> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
3a271275fa
commit
9c088c020d
@ -15,6 +15,7 @@
|
||||
#include <linux/bitfield.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of.h>
|
||||
|
||||
#include <linux/iio/iio.h>
|
||||
#include <linux/iio/sysfs.h>
|
||||
@ -241,9 +242,16 @@ static const struct i2c_device_id al3320a_id[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, al3320a_id);
|
||||
|
||||
static const struct of_device_id al3320a_of_match[] = {
|
||||
{ .compatible = "dynaimage,al3320a", },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, al3320a_of_match);
|
||||
|
||||
static struct i2c_driver al3320a_driver = {
|
||||
.driver = {
|
||||
.name = AL3320A_DRV_NAME,
|
||||
.of_match_table = al3320a_of_match,
|
||||
.pm = &al3320a_pm_ops,
|
||||
},
|
||||
.probe = al3320a_probe,
|
||||
|
Loading…
Reference in New Issue
Block a user