upload tizen1.0 source
[kernel/linux-2.6.36.git] / include / linux / micro_usb_switch.h
1 /*
2  *  Copyright (C) 2009 Samsung Electronics
3  *  Minkyu Kang <mk7.kang@samsung.com>
4  *  
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18  *
19  */
20
21 #ifndef __MICRO_USB_SWITCH_H_
22 #define __MICRO_USB_SWITCH_H_
23
24 #define USB_PATH_NA     -1
25 #define USB_PATH_AP     0
26 #define USB_PATH_CP     1
27
28 struct micro_usb_switch_platform_data {
29         void (*usb_power)(int on, int path);
30         void (*set_usb_switch)(int path);
31         int (*get_usb_switch)(void);
32         int default_path;
33 };
34
35 #endif