summaryrefslogtreecommitdiff
path: root/board/mccroskey
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-03-19 14:27:02 -0700
committerChromeBot <chrome-bot@google.com>2013-03-20 15:23:29 -0700
commit78b0e9863d7d05e9ee50e75d6cd845f1b54a5915 (patch)
tree72dcd6300b48454d41aff8339dce45e7eec7159f /board/mccroskey
parent34e17d4c05ccc4ad48b0a717aebcf278c97f1a79 (diff)
downloadchrome-ec-78b0e9863d7d05e9ee50e75d6cd845f1b54a5915.tar.gz
Use chipset_reset() interface instead of system_warm_reboot()
We have a common chipset interface for performing a warm reset of the AP, so move the implementation from system_warm_reboot() there. (It was never a system function anyway; system = EC+AP; chipset = AP) No functional change; just renaming functions. BUG=chrome-os-partner:18343 BRANCH=none TEST=build daisy,snow,spring,mccroskey Change-Id: Ibc2c5efced5660c4335cd1868470184397800acd Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/45891
Diffstat (limited to 'board/mccroskey')
-rw-r--r--board/mccroskey/board.c2
-rw-r--r--board/mccroskey/board.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/board/mccroskey/board.c b/board/mccroskey/board.c
index 84503799ca..4635908ac3 100644
--- a/board/mccroskey/board.c
+++ b/board/mccroskey/board.c
@@ -156,7 +156,7 @@ void board_i2c_post_init(int port)
}
}
-void system_warm_reboot(void)
+void chipset_reset(int is_cold)
{
/* FIXME: this is just a stub for now... */
}
diff --git a/board/mccroskey/board.h b/board/mccroskey/board.h
index 239c6f9ba9..83acec968a 100644
--- a/board/mccroskey/board.h
+++ b/board/mccroskey/board.h
@@ -118,8 +118,6 @@ void configure_board(void);
/* FIXME: this should not be needed on mccroskey. */
void board_interrupt_host(int active);
-void system_warm_reboot(void);
-
#endif /* !__ASSEMBLER__ */
#endif /* __BOARD_H */