Skip to content

Commit 4d0b562

Browse files
author
Jeff Brown
committed
Disable hardcoded wifi display adapter.
Change-Id: Id0f7d59b6eafa8794ff7616cf54a0b94ba78c763
1 parent 0458a69 commit 4d0b562

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/java/com/android/server/display/WifiDisplayController.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,8 @@ private static Inet4Address getInterfaceAddress(WifiP2pGroup info) {
496496

497497
private static boolean isWifiDisplay(WifiP2pDevice device) {
498498
// FIXME: the wfdInfo API doesn't work yet
499-
return device.deviceName.equals("DWD-300-22ACC2");
499+
return false;
500+
//return device.deviceName.equals("DWD-300-22ACC2");
500501
//return device.deviceName.startsWith("DWD-")
501502
// || device.deviceName.startsWith("DIRECT-")
502503
// || device.deviceName.startsWith("CAVM-");

0 commit comments

Comments
 (0)