Increase thread queue size above default

The UART enqueues work requests in addition to
the actual work onto the rx_q.  Many small byte
packets received by the UART cause many work requests
which may fill the work queue causing deadlock.
diff --git a/system/hci/src/bt_hci_bdroid.c b/system/hci/src/bt_hci_bdroid.c
index 999c362..0f0820a 100644
--- a/system/hci/src/bt_hci_bdroid.c
+++ b/system/hci/src/bt_hci_bdroid.c
@@ -335,7 +335,7 @@
     // can switch prio
     raise_priority_a2dp(TASK_HIGH_HCI_WORKER);
 
-    hc_cb.worker_thread = thread_new("bt_hc_worker");
+    hc_cb.worker_thread = thread_new_sized("bt_hc_worker", 1024);
     if (!hc_cb.worker_thread) {
         ALOGE("%s unable to create worker thread.", __func__);
         return BT_HC_STATUS_FAIL;