We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1802ba6 commit eb7e3e1Copy full SHA for eb7e3e1
IntelBluetoothFirmware/IntelBluetoothFirmware.cpp
@@ -98,9 +98,11 @@ bool IntelBluetoothFirmware::start(IOService *provider)
98
void IntelBluetoothFirmware::publishReg(bool isSucceed, const char *fwName)
99
{
100
m_pDevice->setProperty("FirmwareLoaded", isSucceed);
101
- if (isSucceed) {
+ if (isSucceed)
102
setProperty("fw_name", OSString::withCString(fwName));
103
- }
+ // Monterey+
104
+ if (version_major >= 21)
105
+ m_pDevice->setName("Bluetooth USB Host Controller");
106
}
107
108
void IntelBluetoothFirmware::cleanUp()
0 commit comments