blob: 5a96ba49ca359388429ac463a1d02a6bd89356f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "common.h"
#include "compile_time_macros.h"
#include "gpio_signal.h"
/* Wake up pins */
const enum gpio_signal hibernate_wake_pins[] = {};
const int hibernate_wake_pins_used = ARRAY_SIZE(hibernate_wake_pins);
|