| /* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. | |
| * Use of this source code is governed by a BSD-style license that can be | |
| * found in the LICENSE file. | |
| */ | |
| /* Watchdog driver */ | |
| #include "common.h" | |
| #include "console.h" | |
| /* Console output macros */ | |
| #define CPUTS(outstr) cputs(CC_SYSTEM, outstr) | |
| #define CPRINTS(format, args...) cprints(CC_SYSTEM, format, ## args) | |
| int watchdog_init(void) | |
| { | |
| CPRINTS("TODO: implement %s()", __func__); | |
| return EC_ERROR_UNIMPLEMENTED; | |
| } |