mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-10 23:36:23 +07:00
iio: light: vl6180: add include of mod_devicetable.h and drop of_match_ptr
Enables probing via ACPI PRP0001 route and removes an example of an approach we no longer want people to copy. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
This commit is contained in:
parent
645aee51af
commit
77baa8d6bc
@ -16,6 +16,7 @@
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/mod_devicetable.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/err.h>
|
||||
@ -537,7 +538,7 @@ MODULE_DEVICE_TABLE(i2c, vl6180_id);
|
||||
static struct i2c_driver vl6180_driver = {
|
||||
.driver = {
|
||||
.name = VL6180_DRV_NAME,
|
||||
.of_match_table = of_match_ptr(vl6180_of_match),
|
||||
.of_match_table = vl6180_of_match,
|
||||
},
|
||||
.probe = vl6180_probe,
|
||||
.id_table = vl6180_id,
|
||||
|
Loading…
Reference in New Issue
Block a user