code style fixes

This commit is contained in:
spoerk 2018-01-03 15:52:36 +01:00
parent 604e846ff1
commit f8d2c3fa48
3 changed files with 36 additions and 40 deletions

View File

@ -142,7 +142,7 @@ void rf_ble_cmd_create_slave_cmd(uint8_t *cmd, uint8_t channel, uint8_t *params,
* 1 for the first packet of the BLE connection so that the
* connection is properly initialized
*/
void rf_ble_cmd_create_slave_params(uint8_t *params, dataQueue_t *rx_queue,
void rf_ble_cmd_create_slave_params(uint8_t *param, dataQueue_t *rx_queue,
dataQueue_t *tx_queue, uint32_t access_address,
uint8_t crc_init_0, uint8_t crc_init_1,
uint8_t crc_init_2, uint32_t win_size,

View File

@ -109,7 +109,6 @@ struct network_driver {
/** Output funtion, sends from uipbuf. */
uint8_t (*output)(const linkaddr_t *localdest);
};
extern const struct network_driver NETSTACK_NETWORK;
@ -119,7 +118,6 @@ extern const struct framer NETSTACK_FRAMER;
void netstack_init(void);
/* Netstack ip_packet_processor - for implementing packet filters, firewalls,
debuggin info, etc */
@ -146,8 +144,6 @@ enum netstack_ip_action netstack_process_ip_callback(uint8_t type, const linkadd
void netstack_ip_packet_processor_add(struct netstack_ip_packet_processor *p);
void netstack_ip_packet_processor_remove(struct netstack_ip_packet_processor *p);
/* Netstack sniffer - this will soon be deprecated... */
struct netstack_sniffer {