aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via/cx700/reset.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-24 02:02:42 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-05-31 03:44:42 +0000
commite99f0390b9b8e04b197b165e6e63826ce9631d35 (patch)
tree87644b5d2db42a7ec85f480cc1e75fdde7523e87 /src/northbridge/via/cx700/reset.c
parentec953bc2f95111f6a925d380f9db0ea95392fd89 (diff)
Remove VIA CX700 northbridge support
Change-Id: Id46e3d40393598f6b03ae4fd3186182635f072ca Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/26678 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/northbridge/via/cx700/reset.c')
-rw-r--r--src/northbridge/via/cx700/reset.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/northbridge/via/cx700/reset.c b/src/northbridge/via/cx700/reset.c
deleted file mode 100644
index 8a627590b6..0000000000
--- a/src/northbridge/via/cx700/reset.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2007-2009 coresystems GmbH
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#include <arch/io.h>
-#include <reset.h>
-
-void do_hard_reset(void)
-{
- outb((1 << 2) | (1 << 1), 0xcf9);
-}