TSCH: fix indentation in tsch-packet.c

This commit is contained in:
Yasuyuki Tanaka 2016-12-14 16:50:28 +01:00
parent 3dc74dc632
commit 1d5fc88ae9
1 changed files with 6 additions and 6 deletions

View File

@ -66,7 +66,7 @@
/* Construct enhanced ACK packet and return ACK length */ /* Construct enhanced ACK packet and return ACK length */
int int
tsch_packet_create_eack(uint8_t *buf, int buf_size, tsch_packet_create_eack(uint8_t *buf, int buf_size,
const linkaddr_t *dest_addr, uint8_t seqno, int16_t drift, int nack) const linkaddr_t *dest_addr, uint8_t seqno, int16_t drift, int nack)
{ {
int ret; int ret;
uint8_t curr_len = 0; uint8_t curr_len = 0;
@ -125,7 +125,7 @@ tsch_packet_create_eack(uint8_t *buf, int buf_size,
/* Parse enhanced ACK packet, extract drift and nack */ /* Parse enhanced ACK packet, extract drift and nack */
int int
tsch_packet_parse_eack(const uint8_t *buf, int buf_size, tsch_packet_parse_eack(const uint8_t *buf, int buf_size,
uint8_t seqno, frame802154_t *frame, struct ieee802154_ies *ies, uint8_t *hdr_len) uint8_t seqno, frame802154_t *frame, struct ieee802154_ies *ies, uint8_t *hdr_len)
{ {
uint8_t curr_len = 0; uint8_t curr_len = 0;
int ret; int ret;
@ -155,8 +155,8 @@ tsch_packet_parse_eack(const uint8_t *buf, int buf_size,
/* Check destination address (if any) */ /* Check destination address (if any) */
if(frame802154_extract_linkaddr(frame, NULL, &dest) == 0 || if(frame802154_extract_linkaddr(frame, NULL, &dest) == 0 ||
(!linkaddr_cmp(&dest, &linkaddr_node_addr) (!linkaddr_cmp(&dest, &linkaddr_node_addr)
&& !linkaddr_cmp(&dest, &linkaddr_null))) { && !linkaddr_cmp(&dest, &linkaddr_null))) {
return 0; return 0;
} }
@ -190,7 +190,7 @@ tsch_packet_parse_eack(const uint8_t *buf, int buf_size,
/* Create an EB packet */ /* Create an EB packet */
int int
tsch_packet_create_eb(uint8_t *buf, int buf_size, tsch_packet_create_eb(uint8_t *buf, int buf_size,
uint8_t *hdr_len, uint8_t *tsch_sync_ie_offset) uint8_t *hdr_len, uint8_t *tsch_sync_ie_offset)
{ {
int ret = 0; int ret = 0;
uint8_t curr_len = 0; uint8_t curr_len = 0;
@ -347,7 +347,7 @@ tsch_packet_update_eb(uint8_t *buf, int buf_size, uint8_t tsch_sync_ie_offset)
/* Parse a IEEE 802.15.4e TSCH Enhanced Beacon (EB) */ /* Parse a IEEE 802.15.4e TSCH Enhanced Beacon (EB) */
int int
tsch_packet_parse_eb(const uint8_t *buf, int buf_size, tsch_packet_parse_eb(const uint8_t *buf, int buf_size,
frame802154_t *frame, struct ieee802154_ies *ies, uint8_t *hdr_len, int frame_without_mic) frame802154_t *frame, struct ieee802154_ies *ies, uint8_t *hdr_len, int frame_without_mic)
{ {
uint8_t curr_len = 0; uint8_t curr_len = 0;
int ret; int ret;