aboutsummaryrefslogtreecommitdiff
path: root/src/soc/samsung
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-10-31 08:03:16 +1100
committerEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-11-01 21:14:35 +0100
commit0625a8bcfb90ae8d68c07147cc5cb3172424f601 (patch)
tree5961b43d8efeeab4f80fad776fce9d6a376ef9c1 /src/soc/samsung
parent524625d4e0a6ee07b01960437a3f918c0f04a1bb (diff)
{cpu,soc}: Use DEVICE_NOOP macro over dummy symbol
Change-Id: Iaf2b2873bd1c52d7f936bd9b483e194a0872a626 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/7285 Tested-by: build bot (Jenkins) Reviewed-by: Bruce Griffith <Bruce.Griffith@se-eng.com>
Diffstat (limited to 'src/soc/samsung')
-rw-r--r--src/soc/samsung/exynos5250/cpu.c8
-rw-r--r--src/soc/samsung/exynos5420/cpu.c8
2 files changed, 4 insertions, 12 deletions
diff --git a/src/soc/samsung/exynos5250/cpu.c b/src/soc/samsung/exynos5250/cpu.c
index b8b88d74a2..60fa55a3de 100644
--- a/src/soc/samsung/exynos5250/cpu.c
+++ b/src/soc/samsung/exynos5250/cpu.c
@@ -129,13 +129,9 @@ static void cpu_init(device_t dev)
cpu_id, get_arm_clk() / (1024*1024));
}
-static void cpu_noop(device_t dev)
-{
-}
-
static struct device_operations cpu_ops = {
- .read_resources = cpu_noop,
- .set_resources = cpu_noop,
+ .read_resources = DEVICE_NOOP,
+ .set_resources = DEVICE_NOOP,
.enable_resources = cpu_enable,
.init = cpu_init,
.scan_bus = 0,
diff --git a/src/soc/samsung/exynos5420/cpu.c b/src/soc/samsung/exynos5420/cpu.c
index 506b6768c6..c90463660d 100644
--- a/src/soc/samsung/exynos5420/cpu.c
+++ b/src/soc/samsung/exynos5420/cpu.c
@@ -160,13 +160,9 @@ static void cpu_init(device_t dev)
cpu_id, get_arm_clk() / 1000000);
}
-static void cpu_noop(device_t dev)
-{
-}
-
static struct device_operations cpu_ops = {
- .read_resources = cpu_noop,
- .set_resources = cpu_noop,
+ .read_resources = DEVICE_NOOP,
+ .set_resources = DEVICE_NOOP,
.enable_resources = cpu_enable,
.init = cpu_init,
.scan_bus = 0,