diff options
Diffstat (limited to 'drivers/usb/wusbcore/devconnect.c')
| -rw-r--r-- | drivers/usb/wusbcore/devconnect.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/wusbcore/devconnect.c b/drivers/usb/wusbcore/devconnect.c index c01c7a80744..08a1ec90386 100644 --- a/drivers/usb/wusbcore/devconnect.c +++ b/drivers/usb/wusbcore/devconnect.c @@ -1124,8 +1124,7 @@ void wusbhc_devconnect_destroy(struct wusbhc *wusbhc)   * FIXME: This also enables the keep alives but this is not necessary   * until there are connected and authenticated devices.   */ -int wusbhc_devconnect_start(struct wusbhc *wusbhc, -			    const struct wusb_ckhdid *chid) +int wusbhc_devconnect_start(struct wusbhc *wusbhc)  {  	struct device *dev = wusbhc->dev;  	struct wuie_host_info *hi; @@ -1138,7 +1137,7 @@ int wusbhc_devconnect_start(struct wusbhc *wusbhc,  	hi->hdr.bLength       = sizeof(*hi);  	hi->hdr.bIEIdentifier = WUIE_ID_HOST_INFO;  	hi->attributes        = cpu_to_le16((wusbhc->rsv->stream << 3) | WUIE_HI_CAP_ALL); -	hi->CHID              = *chid; +	hi->CHID              = wusbhc->chid;  	result = wusbhc_mmcie_set(wusbhc, 0, 0, &hi->hdr);  	if (result < 0) {  		dev_err(dev, "Cannot add Host Info MMCIE: %d\n", result);  |