Update the signature of init function to include whether the device is am: 3e7b35ee18

Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/libhardware/+/12308134

Change-Id: I0a65a192cd4461d324e184cd14d0f4daf50afaea
diff --git a/include/hardware/bluetooth.h b/include/hardware/bluetooth.h
index 6e287e6..bbf2fb2 100644
--- a/include/hardware/bluetooth.h
+++ b/include/hardware/bluetooth.h
@@ -469,8 +469,9 @@
     /**
      * Opens the interface and provides the callback routines
      * to the implemenation of this interface.
+     * The |is_atv| flag indicates whether the local device is an Android TV
      */
-    int (*init)(bt_callbacks_t* callbacks );
+    int (*init)(bt_callbacks_t* callbacks, bool is_atv);
 
     /** Enable Bluetooth. */
     int (*enable)(bool guest_mode);