Changeset b3c39690 in mainline for uspace/drv/nic/ar9271/ar9271.c
- Timestamp:
- 2018-01-21T23:19:20Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- db51a6a6
- Parents:
- 09187c6e
- git-author:
- Ondřej Hlavatý <aearsis@…> (2018-01-21 23:19:14)
- git-committer:
- Ondřej Hlavatý <aearsis@…> (2018-01-21 23:19:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/ar9271/ar9271.c
r09187c6e rb3c39690 665 665 } 666 666 667 static int ar9271_init(ar9271_t *ar9271, usb_device_t *usb_device )667 static int ar9271_init(ar9271_t *ar9271, usb_device_t *usb_device, const usb_endpoint_description_t **endpoints) 668 668 { 669 669 ar9271->starting_up = true; … … 679 679 } 680 680 681 int rc = ath_usb_init(ar9271->ath_device, usb_device );681 int rc = ath_usb_init(ar9271->ath_device, usb_device, endpoints); 682 682 if (rc != EOK) { 683 683 free(ar9271->ath_device); … … 850 850 ar9271->ddf_dev = dev; 851 851 852 rc = ar9271_init(ar9271, usb_device_get(dev) );852 rc = ar9271_init(ar9271, usb_device_get(dev), endpoints); 853 853 if (rc != EOK) { 854 854 free(ar9271);
Note:
See TracChangeset
for help on using the changeset viewer.