drivers: sensor: Convert drivers to new DT device macros

Convert sensor drivers from:

    DEVICE_AND_API_INIT -> DEVICE_DT_INST_DEFINE
    DEVICE_GET -> DEVICE_DT_INST_GET
    DEVICE_DECLARE -> DEVICE_DT_INST_DECLARE

etc..

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2020-12-15 18:53:48 -06:00 committed by Anas Nashif
commit 5f605fd5ab
76 changed files with 101 additions and 101 deletions

View file

@ -310,7 +310,7 @@ static const struct fxas21002_config fxas21002_config = {
static struct fxas21002_data fxas21002_data;
DEVICE_AND_API_INIT(fxas21002, DT_INST_LABEL(0), fxas21002_init,
DEVICE_DT_INST_DEFINE(0, fxas21002_init, device_pm_control_nop,
&fxas21002_data, &fxas21002_config,
POST_KERNEL, CONFIG_SENSOR_INIT_PRIORITY,
&fxas21002_driver_api);