summaryrefslogtreecommitdiff
path: root/android/pan.c
diff options
context:
space:
mode:
authorGrzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>2015-01-13 15:30:50 +0100
committerSzymon Janc <szymon.janc@tieto.com>2015-01-22 13:09:53 +0100
commitd831d4ffa0767acc551ee9f30592dc5bf7512a6f (patch)
tree828480ff27dc1d11949e95e0d94a3e2b293d62ae /android/pan.c
parenta007bfa04233760b372f8561c0c154ea28a4f0f4 (diff)
downloadbluez-d831d4ffa0767acc551ee9f30592dc5bf7512a6f.tar.gz
android/pan: Minor style fix
Empty line added between function definitions. Tab indention added. Statics definitions should be placed after structures.
Diffstat (limited to 'android/pan.c')
-rw-r--r--android/pan.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/android/pan.c b/android/pan.c
index 6131890bd..3ff8389cd 100644
--- a/android/pan.c
+++ b/android/pan.c
@@ -63,11 +63,6 @@
#define BNEP_PANU_INTERFACE "bt-pan"
#define BNEP_NAP_INTERFACE "bt-pan%d"
-static bdaddr_t adapter_addr;
-static GSList *devices = NULL;
-static uint8_t local_role = HAL_PAN_ROLE_NONE;
-static struct ipc *hal_ipc = NULL;
-
struct pan_device {
char iface[16];
bdaddr_t dst;
@@ -78,6 +73,11 @@ struct pan_device {
guint watch;
};
+static bdaddr_t adapter_addr;
+static GSList *devices = NULL;
+static uint8_t local_role = HAL_PAN_ROLE_NONE;
+static struct ipc *hal_ipc = NULL;
+
static struct {
uint32_t record_id;
GIOChannel *io;
@@ -463,6 +463,7 @@ static gboolean nap_watchdog_cb(GIOChannel *chan, GIOCondition cond,
return FALSE;
}
+
static gboolean nap_setup_cb(GIOChannel *chan, GIOCondition cond,
gpointer user_data)
{
@@ -488,7 +489,7 @@ static gboolean nap_setup_cb(GIOChannel *chan, GIOCondition cond,
/* Highest known control command id BNEP_FILTER_MULT_ADDR_RSP 0x06 */
if (req->type == BNEP_CONTROL &&
- req->ctrl > BNEP_FILTER_MULT_ADDR_RSP) {
+ req->ctrl > BNEP_FILTER_MULT_ADDR_RSP) {
error("cmd not understood");
bnep_send_ctrl_rsp(sk, BNEP_CONTROL, BNEP_CMD_NOT_UNDERSTOOD,
req->ctrl);