add missing field initializers in hci transport h4 (ehcill) embedded

This commit is contained in:
Matthias Ringwald 2017-03-01 10:16:58 +01:00
parent e0e73eb2f5
commit 851e09fd8a
2 changed files with 4 additions and 2 deletions

View File

@ -158,7 +158,8 @@ static const hci_transport_h4_t hci_transport_h4_ehcill_dma = {
/* .transport.can_send_packet_now = */ h4_can_send_packet_now,
/* .transport.send_packet = */ ehcill_send_packet,
/* .transport.set_baudrate = */ h4_set_baudrate,
/* .transport.reset_link = */ NULL,
/* .transport.reset_link = */ NULL,
/* .transport.set_sco_config = */ NULL,
},
/* .ds = */ &hci_transport_h4_dma_ds
};

View File

@ -123,7 +123,8 @@ static const hci_transport_h4_t hci_transport_h4_dma = {
/* .transport.can_send_packet_now = */ h4_can_send_packet_now,
/* .transport.send_packet = */ h4_send_packet,
/* .transport.set_baudrate = */ h4_set_baudrate,
/* .transport.reset_link = */ NULL,
/* .transport.reset_link = */ NULL,
/* .transport.set_sco_config = */ NULL,
},
/* .ds = */ &hci_transport_h4_dma_ds
};