Merge tag 'LA.QSSI.11.0.r1-11400-qssi.0' of https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/fm-commonsys into HEAD

"LA.QSSI.11.0.r1-11400-qssi.0"

* tag 'LA.QSSI.11.0.r1-11400-qssi.0' of https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/fm-commonsys:
  FM: add null check for BluetoothAdapter instance

Change-Id: I578c6073b24ea1f113092997b4c2909ed91d2b48
diff --git a/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java b/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java
index 7f44278..a0cae6e 100644
--- a/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java
+++ b/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java
@@ -95,8 +95,10 @@
 
     public A2dpDeviceStatus(Context mContext) {
         mAdapter = BluetoothAdapter.getDefaultAdapter();
-        mAdapter.getProfileProxy(mContext, mProfileListener,
-                BluetoothProfile.A2DP);
+        if(mAdapter !=  null) {
+            mAdapter.getProfileProxy(mContext, mProfileListener,
+                    BluetoothProfile.A2DP);
+        }
     }
     private BluetoothProfile.ServiceListener mProfileListener =
         new BluetoothProfile.ServiceListener() {