mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 17:41:54 +00:00
Board configuration interfaces are now defined in board_config.h, not in every board.h file. Tidied /alphabetized CONFIG defines. No functional changes, just rearranging code. BUG=chrome-os-partner:18343 BRANCH=none TEST=build all targets Change-Id: I6196591784f8fa9ce6dfccd31891b679fb200063 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/47419
23 lines
507 B
C
23 lines
507 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.
|
|
*/
|
|
|
|
/* x86 power module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_X86_POWER_H
|
|
#define __CROS_EC_X86_POWER_H
|
|
|
|
#include "gpio.h"
|
|
|
|
#ifdef CONFIG_CHIPSET_X86
|
|
/**
|
|
* Interrupt handler for x86 chipset GPIOs.
|
|
*/
|
|
void x86_power_interrupt(enum gpio_signal signal);
|
|
#else
|
|
#define x86_power_interrupt NULL
|
|
#endif
|
|
|
|
#endif /* __CROS_EC_X86_POWER_H */
|