summaryrefslogtreecommitdiff
path: root/include/chipset_haswell.h
blob: 5a4eaf9dc6d4129744d8cae826ccc6d15412a48d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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.
 */
#ifdef CONFIG_CHIPSET_HASWELL
void haswell_interrupt(enum gpio_signal signal);
#else
#define haswell_interrupt NULL
#endif

#endif