diff options
author | Radu Pirea (NXP OSS) <radu-nicolae.pirea@oss.nxp.com> | 2023-12-19 15:53:27 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-12-27 14:08:09 +0100 |
commit | b1c036e835b67320316e20e562cc3b4daf8fa08b (patch) | |
tree | b1a95969f407ea4af305cda0e2a7fc666d8cebdd /include/net/macsec.h | |
parent | net: macsec: use skb_ensure_writable_head_tail to expand the skb (diff) | |
download | linux-b1c036e835b67320316e20e562cc3b4daf8fa08b.tar.xz linux-b1c036e835b67320316e20e562cc3b4daf8fa08b.zip |
net: macsec: move sci_to_cpu to macsec header
Move sci_to_cpu to the MACsec header to use it in drivers.
Signed-off-by: Radu Pirea (NXP OSS) <radu-nicolae.pirea@oss.nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/macsec.h')
-rw-r--r-- | include/net/macsec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/macsec.h b/include/net/macsec.h index ebf9bc54036a..a5665e9623f2 100644 --- a/include/net/macsec.h +++ b/include/net/macsec.h @@ -325,4 +325,9 @@ static inline void *macsec_netdev_priv(const struct net_device *dev) return netdev_priv(dev); } +static inline u64 sci_to_cpu(sci_t sci) +{ + return be64_to_cpu((__force __be64)sci); +} + #endif /* _NET_MACSEC_H_ */ |