Files
OpenCellular/include/x86_power.h
Randall Spangler 14adad27e8 Clean up board configuration
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
2013-04-05 14:28:42 -07:00

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 */