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
This commit is contained in:
Elyes Haouas 2023-03-02 07:59:06 -07:00 committed by Warner Losh
parent 0ba66872be
commit beb2af45bd

View File

@ -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[])