aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bluetooth
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-03-02 14:59:06 +0000
committerWarner Losh <imp@FreeBSD.org>2023-03-02 14:59:10 +0000
commitbeb2af45bd1f0966ea16967ba745083e7fcb42f5 (patch)
treef8ee3632ec158d7c21adefdb643368af388c96fa /usr.sbin/bluetooth
parent0ba66872bea87abdf13660d5a7946769fd7b118f (diff)
downloadsrc-beb2af45bd1f0966ea16967ba745083e7fcb42f5.tar.gz
src-beb2af45bd1f0966ea16967ba745083e7fcb42f5.zip
bluetooth/hccontrol: Remove useless return at the end of void function
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/656
Diffstat (limited to 'usr.sbin/bluetooth')
-rw-r--r--usr.sbin/bluetooth/hccontrol/le.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/usr.sbin/bluetooth/hccontrol/le.c b/usr.sbin/bluetooth/hccontrol/le.c
index ba8809213c06..6f768619e9d3 100644
--- a/usr.sbin/bluetooth/hccontrol/le.c
+++ b/usr.sbin/bluetooth/hccontrol/le.c
@@ -1086,7 +1086,6 @@ static void handle_le_connection_event(ng_hci_event_pkt_t* e, bool verbose)
conn_event->master_clock_accuracy));
}
}
- return;
}
static int
@@ -1208,8 +1207,6 @@ static void handle_le_remote_features_event(ng_hci_event_pkt_t* e)
hci_le_features2str(feat_event->features,
buffer, sizeof(buffer)));
}
-
- return;
} /* handle_le_remote_features_event */
static int le_rand(int s, int argc, char *argv[])