From c1a9dfe85be5aa7c634bd0facde2ed1e77d76bde Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Thu, 26 Mar 2015 20:10:09 +1100 Subject: soc: Use DEVICE_NOOP macro formalism over static stub func Change-Id: Ice7e27230010ffc48948f952394e849533f94085 Signed-off-by: Edward O'Callaghan Reviewed-on: http://review.coreboot.org/8989 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones --- src/soc/rockchip/rk3288/soc.c | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'src/soc/rockchip') diff --git a/src/soc/rockchip/rk3288/soc.c b/src/soc/rockchip/rk3288/soc.c index f5e52eb4e2..e379644680 100644 --- a/src/soc/rockchip/rk3288/soc.c +++ b/src/soc/rockchip/rk3288/soc.c @@ -35,21 +35,11 @@ static void soc_enable(device_t dev) ram_resource(dev, 0, RAM_BASE_KB, RAM_SIZE_KB); } -static void soc_init(device_t dev) -{ - -} - -static void soc_noop(device_t dev) -{ - -} - static struct device_operations soc_ops = { - .read_resources = soc_noop, - .set_resources = soc_noop, + .read_resources = DEVICE_NOOP, + .set_resources = DEVICE_NOOP, .enable_resources = soc_enable, - .init = soc_init, + .init = DEVICE_NOOP, .scan_bus = 0, }; -- cgit v1.2.3