mlx4_u64_to_mac() predates the common helper but doesn't
make the argument constant.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        port = mlx4_slaves_closest_port(dev, slave, port);
        s_info = &priv->mfunc.master.vf_admin[slave].vport[port];
 
-       mlx4_u64_to_mac(mac, s_info->mac);
+       u64_to_ether_addr(s_info->mac, mac);
        if (setting && !is_valid_ether_addr(mac)) {
                mlx4_info(dev, "Illegal MAC with spoofchk\n");
                return -EPERM;
 
 
 struct devlink_port *mlx4_get_devlink_port(struct mlx4_dev *dev, int port);
 
-static inline void mlx4_u64_to_mac(u8 *addr, u64 mac)
-{
-       int i;
-
-       for (i = ETH_ALEN; i > 0; i--) {
-               addr[i - 1] = mac & 0xFF;
-               mac >>= 8;
-       }
-}
-
 #endif /* MLX4_DRIVER_H */