tests: kernel: device: add missing include

<pm/device.h> header is now required after #40693, this test was missed.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2021-11-29 15:36:24 +01:00 committed by Anas Nashif
parent a0c669e7e6
commit 57d41addd4
2 changed files with 2 additions and 0 deletions

View file

@ -6,6 +6,7 @@
#include <zephyr.h>
#include <device.h>
#include <pm/device.h>
#define DUMMY_DRIVER_NAME "dummy_driver"

View file

@ -9,6 +9,7 @@
#include <init.h>
#include <ztest.h>
#include <sys/printk.h>
#include <pm/device.h>
#include <pm/device_runtime.h>
#include <linker/sections.h>
#include "abstract_driver.h"