diff options
| -rw-r--r-- | drivers/usb/gadget/gadget_chips.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/usb/gadget/gadget_chips.h b/drivers/usb/gadget/gadget_chips.h index 1edbc12fff18..e511fec9f26d 100644 --- a/drivers/usb/gadget/gadget_chips.h +++ b/drivers/usb/gadget/gadget_chips.h | |||
| @@ -136,6 +136,12 @@ | |||
| 136 | #define gadget_is_r8a66597(g) 0 | 136 | #define gadget_is_r8a66597(g) 0 |
| 137 | #endif | 137 | #endif |
| 138 | 138 | ||
| 139 | #ifdef CONFIG_USB_S3C_HSOTG | ||
| 140 | #define gadget_is_s3c_hsotg(g) (!strcmp("s3c-hsotg", (g)->name)) | ||
| 141 | #else | ||
| 142 | #define gadget_is_s3c_hsotg(g) 0 | ||
| 143 | #endif | ||
| 144 | |||
| 139 | 145 | ||
| 140 | /** | 146 | /** |
| 141 | * usb_gadget_controller_number - support bcdDevice id convention | 147 | * usb_gadget_controller_number - support bcdDevice id convention |
| @@ -192,6 +198,8 @@ static inline int usb_gadget_controller_number(struct usb_gadget *gadget) | |||
| 192 | return 0x24; | 198 | return 0x24; |
| 193 | else if (gadget_is_r8a66597(gadget)) | 199 | else if (gadget_is_r8a66597(gadget)) |
| 194 | return 0x25; | 200 | return 0x25; |
| 201 | else if (gadget_is_s3c_hsotg(gadget)) | ||
| 202 | return 0x26; | ||
| 195 | return -ENOENT; | 203 | return -ENOENT; |
| 196 | } | 204 | } |
| 197 | 205 | ||
