mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 00:51:29 +00:00
This moves most of the code into a common module, leaving only the
board-specific GPIOs (now listed in a struct in board.c) and the
chipset-specific state machine with multiple copies.
BUG=chrome-os-partner:18343
BRANCH=none
TEST=boot link; verify suspend and resume work; shut back down and see
it go to G3 after 10 sec.
Change-Id: Iafa8ba55a4870bb0119ff4161a1a9054fcc7955f
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/60949
17 lines
397 B
C
17 lines
397 B
C
/* Copyright (c) 2013 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.
|
|
*/
|
|
|
|
/* Haswell chipset interface */
|
|
|
|
#ifndef __CROS_EC_CHIPSET_HASWELL_H
|
|
#define __CROS_EC_CHIPSET_HASWELL_H
|
|
|
|
/**
|
|
* Interrupt handler for Haswell-specific GPIOs.
|
|
*/
|
|
void haswell_interrupt(enum gpio_signal signal);
|
|
|
|
#endif
|