mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
mac802154: cleanup ieee802154_netdev_to_extended_addr
This patch cleanups the ieee802154_be64_to_le64 to have a similar function like ieee802154_le64_to_be64 only with switched source and destionation types. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
239a84a9a0
commit
705cbbbe9c
2 changed files with 8 additions and 5 deletions
|
@ -224,12 +224,15 @@ struct ieee802154_ops {
|
|||
};
|
||||
|
||||
/**
|
||||
* ieee802154_netdev_to_extended_addr - convert big endian 64 byte void pointer to __le64
|
||||
* @dev_addr: big endian address pointer like netdevice dev_addr attribute
|
||||
* ieee802154_be64_to_le64 - copies and convert be64 to le64
|
||||
* @le64_dst: le64 destination pointer
|
||||
* @be64_src: be64 source pointer
|
||||
*/
|
||||
static inline __le64 ieee802154_netdev_to_extended_addr(const void *dev_addr)
|
||||
static inline void ieee802154_be64_to_le64(void *le64_dst, const void *be64_src)
|
||||
{
|
||||
return (__force __le64)swab64p(dev_addr);
|
||||
__le64 tmp = (__force __le64)swab64p(be64_src);
|
||||
|
||||
memcpy(le64_dst, &tmp, IEEE802154_EXTENDED_ADDR_LEN);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue