[posix] use LogInfo if SPI reset device is not given (#11978)

Change LogNote to LogInfo for consistency with other informational logs.
This commit is contained in:
Jason Zhang
2025-09-29 19:00:32 -07:00
committed by GitHub
parent fab01a7f0f
commit f6f14a7d4a
+4 -1
View File
@@ -155,7 +155,10 @@ otError SpiInterface::Init(ReceiveFrameCallback aCallback, void *aCallbackContex
}
else
{
LogNote("gpio-reset-device is not given.");
// For some products, gpio-reset-device is not needed in the radio URL as
// the reset may be managed by another component in the system (e.g., by the BT stack).
// In this case, gpio-reset-device in the radio URL should not be given, and this is expected.
LogInfo("gpio-reset-device is not given.");
}
InitSpiDev(mRadioUrl.GetPath(), spiMode, spiSpeed);