summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPeter Lawrence <[email protected]>2020-03-03 10:31:46 -0600
committerPeter Lawrence <[email protected]>2020-03-03 10:31:46 -0600
commit4a4682a80a2bd3d6d607d5a960443656de32955d (patch)
treeef0fa610bdeb7e7509b73302962446520d283429 /lib
parentfee79d746604f671483f5872337ea366f2d2c1a2 (diff)
update net class to follow API naming convention
Diffstat (limited to 'lib')
-rw-r--r--lib/networking/rndis_reports.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/networking/rndis_reports.c b/lib/networking/rndis_reports.c
index 535bdf851..9c470b621 100644
--- a/lib/networking/rndis_reports.c
+++ b/lib/networking/rndis_reports.c
@@ -36,8 +36,8 @@
#define RNDIS_LINK_SPEED 12000000 /* Link baudrate (12Mbit/s for USB-FS) */
#define RNDIS_VENDOR "TinyUSB" /* NIC vendor name */
-static const uint8_t *const station_hwaddr = network_mac_address;
-static const uint8_t *const permanent_hwaddr = network_mac_address;
+static const uint8_t *const station_hwaddr = tud_network_mac_address;
+static const uint8_t *const permanent_hwaddr = tud_network_mac_address;
static usb_eth_stat_t usb_eth_stat = { 0, 0, 0, 0 };
static uint32_t oid_packet_filter = 0x0000000;