From c805aca52de5c35e8c2f4b9c36710ee743901295 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Sun, 1 Feb 2026 21:49:13 +0100 Subject: [PATCH] cleans up mnrs_network_driver includes --- port/moonlight/mnrs_network_driver.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/port/moonlight/mnrs_network_driver.c b/port/moonlight/mnrs_network_driver.c index ab2660a..4a6d9fd 100644 --- a/port/moonlight/mnrs_network_driver.c +++ b/port/moonlight/mnrs_network_driver.c @@ -25,10 +25,10 @@ #include "gen/ethmac.h" #include "nx_api.h" -#include "nx_link.h" #include "platform.h" #include "tx_port.h" #include + #if defined(NX_DEBUG) || defined(NX_DEBUG_PACKET) #include #endif @@ -68,8 +68,8 @@ extern int register_irq_handler(unsigned irq_num, void (*handler)()); /* For the ethernet driver, physical addresses are allocated starting at the preset value and then incremented before the next allocation. */ // Locally Administered Addresses that can be assigned by network, range is 02-00-00 to 02-00-5E -ULONG mnrs_mac_address_msw = 0x0200; -ULONG mnrs_mac_address_lsw = 0x00334450; +const ULONG mnrs_mac_address_msw = 0x0200; +const ULONG mnrs_mac_address_lsw = 0x00334450; /* Define driver prototypes. */