diff options
Diffstat (limited to 'src/device/root_device.c')
-rw-r--r-- | src/device/root_device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/root_device.c b/src/device/root_device.c index 68a7ae668f..49aa3d8be5 100644 --- a/src/device/root_device.c +++ b/src/device/root_device.c @@ -127,8 +127,8 @@ static const char *root_dev_acpi_name(const struct device *dev) * of a motherboard can override this if you want non-default behavior. */ struct device_operations default_dev_ops_root = { - .read_resources = DEVICE_NOOP, - .set_resources = DEVICE_NOOP, + .read_resources = noop_read_resources, + .set_resources = noop_set_resources, .scan_bus = scan_static_bus, .reset_bus = root_dev_reset, #if CONFIG(HAVE_ACPI_TABLES) |