From c0e3fd0a5b6e88398a2d7e534a5d2aac01436e73 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sat, 8 May 2021 19:57:28 +0100 Subject: [PATCH] Remove unneeded warning message. --- MMDVMHost.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/MMDVMHost.cpp b/MMDVMHost.cpp index 82b54fa..969f949 100644 --- a/MMDVMHost.cpp +++ b/MMDVMHost.cpp @@ -386,13 +386,9 @@ int CMMDVMHost::run() } if (m_fmEnabled && m_conf.getFMNetworkEnabled()) { - if (m_modem->getVersion() == 1U) { - LogWarning("FM networking enabled in the host but not available the modem firmware, disabling"); - } else { - ret = createFMNetwork(); - if (!ret) - return 1; - } + ret = createFMNetwork(); + if (!ret) + return 1; } if (m_ax25Enabled && m_conf.getAX25NetworkEnabled()) {