Skip to content

Commit 1802ba6

Browse files
committed
We found that the Gen 2 bluetooth may return different size with IntelVersion when in OPERATIONAL mode, then the code will go wrong and print 'Unsupported Intel hardware platform 0', considering we will not attach the really unsupported device to this driver, so we fake it as firmware loaded done.
1 parent 5354f1a commit 1802ba6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

IntelBluetoothFirmware/IntelBluetoothOpsGen3.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ setup()
168168
if (INTEL_HW_PLATFORM(verTLV.cnvi_bt) != 0x37) {
169169
XYLog("Unsupported Intel hardware platform (0x%2x)\n",
170170
INTEL_HW_PLATFORM(verTLV.cnvi_bt));
171-
return false;
171+
// TODO: We found that the Gen 2 bluetooth may return different size with IntelVersion when in OPERATIONAL mode, then the code will go here, considering we will not attach the really unsupported device to this driver, so we fake it as firmware loaded done here.
172+
return true;
172173
}
173174

174175
/* Check for supported iBT hardware variants of this firmware

0 commit comments

Comments
 (0)