diff options
Diffstat (limited to 'drivers/phy/tegra/xusb-tegra124.c')
| -rw-r--r-- | drivers/phy/tegra/xusb-tegra124.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/drivers/phy/tegra/xusb-tegra124.c b/drivers/phy/tegra/xusb-tegra124.c index 98d84920c676..db56c7fbe60b 100644 --- a/drivers/phy/tegra/xusb-tegra124.c +++ b/drivers/phy/tegra/xusb-tegra124.c @@ -1422,6 +1422,8 @@ tegra124_usb2_port_map(struct tegra_xusb_port *port)  }  static const struct tegra_xusb_port_ops tegra124_usb2_port_ops = { +	.release = tegra_xusb_usb2_port_release, +	.remove = tegra_xusb_usb2_port_remove,  	.enable = tegra124_usb2_port_enable,  	.disable = tegra124_usb2_port_disable,  	.map = tegra124_usb2_port_map, @@ -1443,6 +1445,7 @@ tegra124_ulpi_port_map(struct tegra_xusb_port *port)  }  static const struct tegra_xusb_port_ops tegra124_ulpi_port_ops = { +	.release = tegra_xusb_ulpi_port_release,  	.enable = tegra124_ulpi_port_enable,  	.disable = tegra124_ulpi_port_disable,  	.map = tegra124_ulpi_port_map, @@ -1464,6 +1467,7 @@ tegra124_hsic_port_map(struct tegra_xusb_port *port)  }  static const struct tegra_xusb_port_ops tegra124_hsic_port_ops = { +	.release = tegra_xusb_hsic_port_release,  	.enable = tegra124_hsic_port_enable,  	.disable = tegra124_hsic_port_disable,  	.map = tegra124_hsic_port_map, @@ -1647,6 +1651,8 @@ tegra124_usb3_port_map(struct tegra_xusb_port *port)  }  static const struct tegra_xusb_port_ops tegra124_usb3_port_ops = { +	.release = tegra_xusb_usb3_port_release, +	.remove = tegra_xusb_usb3_port_remove,  	.enable = tegra124_usb3_port_enable,  	.disable = tegra124_usb3_port_disable,  	.map = tegra124_usb3_port_map, |