Skip to content

Commit

Permalink
cpu/cc2538: update function signature of EUI provider
Browse files Browse the repository at this point in the history
  • Loading branch information
benpicco committed Jan 4, 2024
1 parent 26682d8 commit 94ad4d7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cpu/cc2538/include/cc2538_eui_primary.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,13 @@ extern "C" {
/**
* @brief Get the primary (burned-in) EUI-64 of the device
*
* @param arg unused
* @param[out] addr The EUI-64
* @param index unused
* @param[out] addr The EUI-64
*
* @return 0
*/
static inline int cc2538_get_eui64_primary(const void *arg, eui64_t *addr, uint8_t index)
static inline int cc2538_get_eui64_primary(uint8_t index, eui64_t *addr)
{
(void)arg;
(void)index;

/*
Expand Down

0 comments on commit 94ad4d7

Please sign in to comment.