Skip to content

Latest commit

 

History

History
59 lines (46 loc) · 1.94 KB

usb_moded-modules.h

File metadata and controls

59 lines (46 loc) · 1.94 KB
 
Mar 22, 2011
Mar 22, 2011
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
Copyright (C) 2010 Nokia Corporation. All rights reserved.
Author: Philippe De Swert <philippe.de-swert@nokia.com>
This program is free software; you can redistribute it and/or
modify it under the terms of the Lesser GNU General Public License
version 2 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the Lesser GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
/* module name definitions */
#define MODULE_NETWORK "g_nokia"
#ifdef NOKIA
Mar 1, 2012
Mar 1, 2012
24
#define MODULE_NETWORK_MTP "g_nokia devmode=0"
Mar 22, 2011
Mar 22, 2011
25
#else
Apr 15, 2011
Apr 15, 2011
26
#define MODULE_NETWORK_MTP "g_nokia"
Mar 22, 2011
Mar 22, 2011
27
#endif /* NOKIA */
Jan 13, 2012
Jan 13, 2012
28
29
#define MODULE_MASS_STORAGE "g_mass_storage"
#define MODULE_CHARGING "g_mass_storage luns=1 stall=0 removable=1"
Mar 22, 2011
Mar 22, 2011
30
31
#define MODULE_NONE "none"
#define MODULE_WINDOWS_NET "g_ether"
Aug 6, 2012
Aug 6, 2012
32
#define MODULE_DEVELOPER "g_ether"
Jul 19, 2012
Jul 19, 2012
33
#define MODULE_MTP "g_ffs"
Mar 22, 2011
Mar 22, 2011
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* load module */
int usb_moded_load_module(const char *module);
/* unload module */
int usb_moded_unload_module(const char *module);
/* find which module is loaded */
const char * usb_moded_find_module(void);
/* clean up for the mode changes on disconnect */
int usb_moded_mode_cleanup(const char *module);
/* clean up modules when usb gets disconnected */
int usb_moded_module_cleanup(const char *module);
/* clean up to allow for switching */
int usb_moded_module_switch_prepare(int force);
/* check if the correct module is loaded or not and switch if not */
void check_module_state(const char *module_name);
#ifdef NOKIA
/* handler for a cleanup after a timeout */
Jun 28, 2011
Jun 28, 2011
58
gboolean usb_cleanup_timeout(gpointer data);
Mar 22, 2011
Mar 22, 2011
59
#endif /* NOKIA */