From e3f4bbdc734892666a06ec510a040482cb78accf Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Tue, 4 Nov 2025 11:06:51 -0500 Subject: [PATCH] Device: sendEthPhyMsg(): Drop online requirement --- device/device.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/device/device.cpp b/device/device.cpp index ddf3f23..6fdbb9d 100644 --- a/device/device.cpp +++ b/device/device.cpp @@ -2090,10 +2090,6 @@ std::optional Device::sendEthPhyMsg(const EthPhyMessage& message, report(APIEvent::Type::EthPhyRegisterControlNotAvailable, APIEvent::Severity::Error); return std::nullopt; } - if(!isOnline()) { - report(APIEvent::Type::DeviceCurrentlyOffline, APIEvent::Severity::Error); - return std::nullopt; - } std::vector bytes; HardwareEthernetPhyRegisterPacket::EncodeFromMessage(message, bytes, report);