can: at91_can: Use of_match_ptr()
of_match_ptr() eliminates having an #ifdef returning NULL for the case when OF is disabled. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
baffd2e8d9
commit
1f3e4b0cc4
|
@ -1264,8 +1264,6 @@ static const struct of_device_id at91_can_dt_ids[] = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, at91_can_dt_ids);
|
MODULE_DEVICE_TABLE(of, at91_can_dt_ids);
|
||||||
#else
|
|
||||||
#define at91_can_dt_ids NULL
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const struct at91_devtype_data *at91_can_get_driver_data(struct platform_device *pdev)
|
static const struct at91_devtype_data *at91_can_get_driver_data(struct platform_device *pdev)
|
||||||
|
@ -1424,7 +1422,7 @@ static struct platform_driver at91_can_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = KBUILD_MODNAME,
|
.name = KBUILD_MODNAME,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.of_match_table = at91_can_dt_ids,
|
.of_match_table = of_match_ptr(at91_can_dt_ids),
|
||||||
},
|
},
|
||||||
.id_table = at91_can_id_table,
|
.id_table = at91_can_id_table,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue