mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 04:56:13 +02:00
iio: light: ltr501: Drop ACPI_PTR() usage
Avoiding unused variable warnings when using this macro adds complexity that in simple cases like this one is not justified for the small saving in data. Include linux/mod_devicetable.h which includes the definition of struct acpi_device_id (hence somewhat related to the main change) Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Link: https://lore.kernel.org/r/20231231183514.566609-15-jic23@kernel.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
cc4ac27b4a
commit
730697c191
|
|
@ -10,6 +10,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
#include <linux/mod_devicetable.h>
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
|
|
@ -1639,7 +1640,7 @@ static struct i2c_driver ltr501_driver = {
|
||||||
.name = LTR501_DRV_NAME,
|
.name = LTR501_DRV_NAME,
|
||||||
.of_match_table = ltr501_of_match,
|
.of_match_table = ltr501_of_match,
|
||||||
.pm = pm_sleep_ptr(<r501_pm_ops),
|
.pm = pm_sleep_ptr(<r501_pm_ops),
|
||||||
.acpi_match_table = ACPI_PTR(ltr_acpi_match),
|
.acpi_match_table = ltr_acpi_match,
|
||||||
},
|
},
|
||||||
.probe = ltr501_probe,
|
.probe = ltr501_probe,
|
||||||
.remove = ltr501_remove,
|
.remove = ltr501_remove,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user