tests: fs: remove usage of device_pm_control_nop

device_pm_control_nop is now deprecated in favour of NULL.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2021-04-28 12:24:32 +02:00 committed by Anas Nashif
commit e4ec9f7685

View file

@ -93,5 +93,5 @@ static const struct flash_driver_api flash_ram_api = {
}; };
DEVICE_DEFINE(flash_ram_test, "ram_flash_test_drv", test_ram_flash_init, DEVICE_DEFINE(flash_ram_test, "ram_flash_test_drv", test_ram_flash_init,
device_pm_control_nop, NULL, NULL, POST_KERNEL, NULL, NULL, NULL, POST_KERNEL,
CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &flash_ram_api); CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &flash_ram_api);