4 #include <linux/kernel.h>
5 #include <linux/types.h>
7 #define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x"
8 #define DECLARE_MAC_BUF(var) char var[18] __maybe_unused
10 static inline char *print_mac(char *buf
, const u8
*addr
)
13 addr
[0], addr
[1], addr
[2], addr
[3], addr
[4], addr
[5]);
This page took 0.040694 seconds and 5 git commands to generate.