summaryrefslogtreecommitdiff
path: root/src/class/cdc/cdc_rndis_host.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-08-13 18:10:23 +0700
committerhathach <[email protected]>2018-08-13 18:10:23 +0700
commite07b1acbed02fff395c91b421b7fdf6c7cda61a4 (patch)
tree8773b56b7236567fd9ec6dafc99c5de58127ecc9 /src/class/cdc/cdc_rndis_host.c
parentb07124c623107da46b1125b28092828f487e8c45 (diff)
rename VERIFY to TU_VERIFY to avoid conflict with application
Diffstat (limited to 'src/class/cdc/cdc_rndis_host.c')
-rw-r--r--src/class/cdc/cdc_rndis_host.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class/cdc/cdc_rndis_host.c b/src/class/cdc/cdc_rndis_host.c
index 62361feb4..4d28b0e0c 100644
--- a/src/class/cdc/cdc_rndis_host.c
+++ b/src/class/cdc/cdc_rndis_host.c
@@ -75,7 +75,7 @@ static tusb_error_t send_message_get_response_subtask( uint8_t dev_addr, cdch_da
tusb_error_t tusbh_cdc_rndis_get_mac_addr(uint8_t dev_addr, uint8_t mac_address[6])
{
TU_ASSERT( tusbh_cdc_rndis_is_mounted(dev_addr), TUSB_ERROR_CDCH_DEVICE_NOT_MOUNTED);
- VERIFY( mac_address, TUSB_ERROR_INVALID_PARA);
+ TU_VERIFY( mac_address, TUSB_ERROR_INVALID_PARA);
memcpy(mac_address, rndish_data[dev_addr-1].mac_address, 6);