Merge "Use `ro.boot.qemu` to check if the device is an emulator" am: 45a706e4fe am: 316b2ef507 am: 3e323802f9

Original change: https://android-review.googlesource.com/c/platform/hardware/broadcom/libbt/+/1627760

Change-Id: If310970a0552b9f981dba534b299ca05201cb0dd
diff --git a/src/upio.c b/src/upio.c
index 1a88e28..5050393 100644
--- a/src/upio.c
+++ b/src/upio.c
@@ -124,7 +124,7 @@
 {
     char value[PROPERTY_VALUE_MAX];
 
-    property_get("ro.kernel.qemu", value, "0");
+    property_get("ro.boot.qemu", value, "0");
     UPIODBG("is_emulator_context : %s", value);
     if (strcmp(value, "1") == 0) {
         return 1;