2012-09-12 11:58:05 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* The code contained herein is licensed under the GNU General Public
|
|
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
|
|
* Version 2 or later at the following locations:
|
|
|
|
*
|
|
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
2013-08-14 09:44:16 +00:00
|
|
|
struct imx_usbmisc_data {
|
2012-09-12 11:58:05 +00:00
|
|
|
int index;
|
|
|
|
|
2013-01-28 00:45:05 +00:00
|
|
|
unsigned int disable_oc:1; /* over current detect disabled */
|
2013-03-30 10:54:01 +00:00
|
|
|
unsigned int evdo:1; /* set external vbus divider option */
|
2012-09-12 11:58:05 +00:00
|
|
|
};
|
|
|
|
|
2013-08-14 09:44:16 +00:00
|
|
|
int imx_usbmisc_init(struct imx_usbmisc_data *);
|
|
|
|
int imx_usbmisc_init_post(struct imx_usbmisc_data *);
|