mark hci packet handler as private (static)

This commit is contained in:
matthias.ringwald 2013-02-18 15:55:02 +00:00
parent e8cf993359
commit 0a57e69fd3

View File

@ -682,7 +682,7 @@ static void event_handler(uint8_t *packet, int size){
hci_run();
}
void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
static void packet_handler(uint8_t packet_type, uint8_t *packet, uint16_t size){
switch (packet_type) {
case HCI_EVENT_PACKET:
event_handler(packet, size);