mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
8e22978c57
"ci13xxx" is bad for at least the following reasons: * people often mistype it * it doesn't add any informational value to the names it's used in * it needlessly attracts mail filters This patch replaces it with "ci_hdrc", "ci_udc" or "ci_hw", depending on the situation. Modules with ci13xxx prefix are also renamed accordingly and aliases are added for compatibility. Otherwise, no functional changes. Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
32 lines
984 B
C
32 lines
984 B
C
/*
|
|
* 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
|
|
*/
|
|
|
|
/* Used to set SoC specific callbacks */
|
|
struct usbmisc_ops {
|
|
/* It's called once when probe a usb device */
|
|
int (*init)(struct device *dev);
|
|
/* It's called once after adding a usb device */
|
|
int (*post)(struct device *dev);
|
|
};
|
|
|
|
struct usbmisc_usb_device {
|
|
struct device *dev; /* usb controller device */
|
|
int index;
|
|
|
|
unsigned int disable_oc:1; /* over current detect disabled */
|
|
unsigned int evdo:1; /* set external vbus divider option */
|
|
};
|
|
|
|
int usbmisc_set_ops(const struct usbmisc_ops *ops);
|
|
void usbmisc_unset_ops(const struct usbmisc_ops *ops);
|
|
int
|
|
usbmisc_get_init_data(struct device *dev, struct usbmisc_usb_device *usbdev);
|