Remove unneeded warning message.

This commit is contained in:
Jonathan Naylor 2021-05-08 19:57:28 +01:00
parent e6fc679502
commit c0e3fd0a5b

View file

@ -386,13 +386,9 @@ int CMMDVMHost::run()
} }
if (m_fmEnabled && m_conf.getFMNetworkEnabled()) { if (m_fmEnabled && m_conf.getFMNetworkEnabled()) {
if (m_modem->getVersion() == 1U) { ret = createFMNetwork();
LogWarning("FM networking enabled in the host but not available the modem firmware, disabling"); if (!ret)
} else { return 1;
ret = createFMNetwork();
if (!ret)
return 1;
}
} }
if (m_ax25Enabled && m_conf.getAX25NetworkEnabled()) { if (m_ax25Enabled && m_conf.getAX25NetworkEnabled()) {