mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-07 16:11:43 +00:00
We can clear the reset cause in system pre-init now because of a previous change which preserves it across a sysjump. Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=none TEST=if it boots, it works Change-Id: I1d8b99df5a0be0de9545d22ad1a6b7fb3140f813
17 lines
423 B
C
17 lines
423 B
C
/* Copyright (c) 2012 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.
|
|
*/
|
|
|
|
/* Port 80 module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_PORT80_H
|
|
#define __CROS_EC_PORT80_H
|
|
|
|
#include "common.h"
|
|
|
|
/* Called by LPC module when a byte of data is written to port 80. */
|
|
void port_80_write(int data);
|
|
|
|
#endif /* __CROS_EC_PORT80_H */
|