Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions subsys/mgmt/mcumgr/transport/src/smp_lorawan.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

LOG_MODULE_REGISTER(smp_lorawan, CONFIG_MCUMGR_TRANSPORT_LORAWAN_LOG_LEVEL);

static void smp_lorawan_downlink(uint8_t port, bool data_pending, int16_t rssi, int8_t snr,
static void smp_lorawan_downlink(uint8_t port, uint8_t flags, int16_t rssi, int8_t snr,
uint8_t len, const uint8_t *hex_data);

Check notice on line 21 in subsys/mgmt/mcumgr/transport/src/smp_lorawan.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

subsys/mgmt/mcumgr/transport/src/smp_lorawan.c:21 -static void smp_lorawan_downlink(uint8_t port, uint8_t flags, int16_t rssi, int8_t snr, - uint8_t len, const uint8_t *hex_data); +static void smp_lorawan_downlink(uint8_t port, uint8_t flags, int16_t rssi, int8_t snr, uint8_t len, + const uint8_t *hex_data);
static int smp_lorawan_uplink(struct net_buf *nb);

static uint16_t smp_lorawan_get_mtu(const struct net_buf *nb);
Expand Down Expand Up @@ -122,10 +122,10 @@
}
#endif

static void smp_lorawan_downlink(uint8_t port, bool data_pending, int16_t rssi, int8_t snr,
static void smp_lorawan_downlink(uint8_t port, uint8_t flags, int16_t rssi, int8_t snr,
uint8_t len, const uint8_t *hex_data)
{

Check notice on line 127 in subsys/mgmt/mcumgr/transport/src/smp_lorawan.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

subsys/mgmt/mcumgr/transport/src/smp_lorawan.c:127 -static void smp_lorawan_downlink(uint8_t port, uint8_t flags, int16_t rssi, int8_t snr, - uint8_t len, const uint8_t *hex_data) +static void smp_lorawan_downlink(uint8_t port, uint8_t flags, int16_t rssi, int8_t snr, uint8_t len, + const uint8_t *hex_data)
ARG_UNUSED(data_pending);
ARG_UNUSED(flags);
ARG_UNUSED(rssi);
ARG_UNUSED(snr);

Expand Down
Loading