blob: 3bb31e71b6c9fd009c418d998aed34e0002d327b [file] [log] [blame]
Flemmard70490802014-01-05 22:04:38 -08001/* include/linux/htc_cir.h
2 *
3 * Copyright (C) 2011 HTC, Inc.
4 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 */
15
16#ifndef __LINUX_HTC_CIR_H
17#define __LINUX_HTC_CIR_H
18
19struct cir_platform_data {
20 int (*cir_set_path)(int);
21 int (*cir_reset)(void);
22 int (*cir_power)(int);
23};
24
25enum irda_path {
26 PATH_NONE = 0,
27 PATH_IRDA,
28 PATH_CIR,
29};
30
31#endif