From b6fa7a28a4bf53608e789cbbe92a80a765c2ff5c Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Fri, 7 Dec 2018 12:21:18 +0100 Subject: src/soc/intel/braswell: Use DEVICE_NOOP Use already defined DEVICE_NOOP instead. Change-Id: Ie6182f273cba3073c84a502c34a002dee6122c2f Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/29857 Reviewed-by: Patrick Rudolph Tested-by: build bot (Jenkins) --- src/soc/intel/braswell/chip.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/soc/intel/braswell/chip.c') diff --git a/src/soc/intel/braswell/chip.c b/src/soc/intel/braswell/chip.c index 7a63b5b715..b7f6d4dd1a 100644 --- a/src/soc/intel/braswell/chip.c +++ b/src/soc/intel/braswell/chip.c @@ -37,12 +37,10 @@ static struct device_operations pci_domain_ops = { .scan_bus = pci_domain_scan_bus, }; -static void cpu_bus_noop(struct device *dev) { } - static struct device_operations cpu_bus_ops = { - .read_resources = cpu_bus_noop, - .set_resources = cpu_bus_noop, - .enable_resources = cpu_bus_noop, + .read_resources = DEVICE_NOOP, + .set_resources = DEVICE_NOOP, + .enable_resources = DEVICE_NOOP, .init = soc_init_cpus }; -- cgit v1.2.3