ieee802154 MAC: Fix a warning when compiled for a target with 64-bit addressing
This commit is contained in:
parent
a728fc0444
commit
19b0aa3145
@ -95,7 +95,7 @@ static void mac802154_purge_worker(FAR void *arg);
|
|||||||
|
|
||||||
/* Watchdog Timeout Functions */
|
/* Watchdog Timeout Functions */
|
||||||
|
|
||||||
static void mac802154_timeout_expiry(int argc, uint32_t arg, ...);
|
static void mac802154_timeout_expiry(int argc, wdparm_t arg, ...);
|
||||||
|
|
||||||
static uint32_t mac802154_symtoticks(FAR struct ieee802154_privmac_s *priv,
|
static uint32_t mac802154_symtoticks(FAR struct ieee802154_privmac_s *priv,
|
||||||
uint32_t symbols);
|
uint32_t symbols);
|
||||||
@ -1271,7 +1271,8 @@ int mac802154_timerstart(FAR struct ieee802154_privmac_s *priv,
|
|||||||
|
|
||||||
/* Start the watchdog */
|
/* Start the watchdog */
|
||||||
|
|
||||||
wd_start(priv->timeout, (int32_t)ticks, mac802154_timeout_expiry, 1, (uint32_t)priv);
|
wd_start(priv->timeout, (int32_t)ticks, mac802154_timeout_expiry,
|
||||||
|
1, (wdparm_t)priv);
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
@ -1294,7 +1295,7 @@ int mac802154_timerstart(FAR struct ieee802154_privmac_s *priv,
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void mac802154_timeout_expiry(int argc, uint32_t arg, ...)
|
static void mac802154_timeout_expiry(int argc, wdparm_t arg, ...)
|
||||||
{
|
{
|
||||||
FAR struct ieee802154_privmac_s *priv = (FAR struct ieee802154_privmac_s *)arg;
|
FAR struct ieee802154_privmac_s *priv = (FAR struct ieee802154_privmac_s *)arg;
|
||||||
|
|
||||||
|
@ -683,7 +683,7 @@ static int lo_ioctl(FAR struct net_driver_s *dev, int cmd,
|
|||||||
else if (cmd == MAC802154IOC_MLME_GET_REQUEST)
|
else if (cmd == MAC802154IOC_MLME_GET_REQUEST)
|
||||||
{
|
{
|
||||||
FAR struct ieee802154_get_req_s *getreq = &netmac->u.getreq;
|
FAR struct ieee802154_get_req_s *getreq = &netmac->u.getreq;
|
||||||
|
|
||||||
switch (getreq->attr)
|
switch (getreq->attr)
|
||||||
{
|
{
|
||||||
case IEEE802154_ATTR_MAC_PANID:
|
case IEEE802154_ATTR_MAC_PANID:
|
||||||
|
Loading…
Reference in New Issue
Block a user