-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 208775 b: refs/heads/master c: d7f1e82 h: refs/heads/master i: 208773: 9670c36 208771: 537d122 208767: 79798e2 v: v3
- Loading branch information
Jongpill Lee
authored and
Kukjin Kim
committed
Aug 5, 2010
1 parent
1a28ecc
commit 503e4fc
Showing
3 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: c8def0857f93413db795ce3586bcc3c3eaae7088 | ||
refs/heads/master: d7f1e82ac982dead64d2b3825b7d33db3023a514 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* linux/arch/arm/plat-s5p/include/plat/system-reset.h | ||
* | ||
* Copyright (c) 2010 Samsung Electronics Co., Ltd. | ||
* http://www.samsung.com | ||
* | ||
* Based on arch/arm/mach-s3c2410/include/mach/system-reset.h | ||
* | ||
* S5P - System define for arch_reset() | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#include <plat/watchdog-reset.h> | ||
|
||
static void arch_reset(char mode, const char *cmd) | ||
{ | ||
/* Perform reset using Watchdog reset. | ||
* SWRESET support will be added later. | ||
*/ | ||
|
||
arch_wdt_reset(); | ||
} |