diff options
Diffstat (limited to 'src/northbridge/via')
-rw-r--r-- | src/northbridge/via/cx700/reset.c | 2 | ||||
-rw-r--r-- | src/northbridge/via/vx900/northbridge.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/via/cx700/reset.c b/src/northbridge/via/cx700/reset.c index b3c2a658dbf4..8a627590b6cb 100644 --- a/src/northbridge/via/cx700/reset.c +++ b/src/northbridge/via/cx700/reset.c @@ -16,7 +16,7 @@ #include <arch/io.h> #include <reset.h> -void hard_reset(void) +void do_hard_reset(void) { outb((1 << 2) | (1 << 1), 0xcf9); } diff --git a/src/northbridge/via/vx900/northbridge.c b/src/northbridge/via/vx900/northbridge.c index fbb8fdf898db..36382934daf5 100644 --- a/src/northbridge/via/vx900/northbridge.c +++ b/src/northbridge/via/vx900/northbridge.c @@ -43,7 +43,7 @@ static uint64_t uma_memory_size = 0; * remapping mechanism will overflow, the effects of which are unknown. */ -void hard_reset(void) +void do_hard_reset(void) { outb((1 << 2) | (1 << 1), 0xcf9); } |