diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-10-25 00:05:00 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-10-25 00:05:00 +0000 |
commit | 16574b7478fa8765b4903660d269865dbafda487 (patch) | |
tree | 14f10d39d00ca21262dba450d1cb82d0a2a3f426 /sys/arch/armv7/exynos | |
parent | f8d919e51333761755852ff02ec3ff942bc791ae (diff) |
Remove now unused disable_l2_if_needed interface.
ok kettenis@ patrick@
Diffstat (limited to 'sys/arch/armv7/exynos')
-rw-r--r-- | sys/arch/armv7/exynos/exynos_machdep.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/arch/armv7/exynos/exynos_machdep.c b/sys/arch/armv7/exynos/exynos_machdep.c index b799dce2477..f3dc334ff9f 100644 --- a/sys/arch/armv7/exynos/exynos_machdep.c +++ b/sys/arch/armv7/exynos/exynos_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exynos_machdep.c,v 1.9 2016/06/08 15:27:05 jsg Exp $ */ +/* $OpenBSD: exynos_machdep.c,v 1.10 2016/10/25 00:04:59 jsg Exp $ */ /* * Copyright (c) 2013 Patrick Wildt <patrick@blueri.se> * @@ -60,12 +60,6 @@ exynos_platform_powerdown(void) } -static void -exynos_platform_disable_l2_if_needed(void) -{ - -} - void exynos_platform_board_init(void) { @@ -77,7 +71,6 @@ struct armv7_platform exynos_platform = { .smc_write = exynos_platform_smc_write, .watchdog_reset = exynos_platform_watchdog_reset, .powerdown = exynos_platform_powerdown, - .disable_l2_if_needed = exynos_platform_disable_l2_if_needed, .init_mainbus = exynos_platform_init_mainbus, }; |