| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * S3C24XX USB 2.0 High-speed USB controller gadget driver |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 7 | 8 | * The S3C24XX USB 2.0 high-speed USB controller supports upto 9 endpoints. |
|---|
| 8 | 9 | * Each endpoint can be configured as either in or out endpoint. Endpoints |
|---|
| 9 | 10 | * can be configured for Bulk or Interrupt transfer mode. |
|---|
| 10 | | - * |
|---|
| 11 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 12 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 13 | | - * published by the Free Software Foundation. |
|---|
| 14 | 11 | */ |
|---|
| 15 | 12 | |
|---|
| 16 | 13 | #ifndef __LINUX_USB_S3C_HSUDC_H |
|---|
| .. | .. |
|---|
| 29 | 26 | unsigned int epnum; |
|---|
| 30 | 27 | void (*gpio_init)(void); |
|---|
| 31 | 28 | void (*gpio_uninit)(void); |
|---|
| 29 | + void (*phy_init)(void); |
|---|
| 30 | + void (*phy_uninit)(void); |
|---|
| 32 | 31 | }; |
|---|
| 33 | 32 | |
|---|
| 34 | 33 | #endif /* __LINUX_USB_S3C_HSUDC_H */ |
|---|