Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c87b29c authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

mellanox: Change en_print to return void



No caller or macro uses the return value so make it void.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-By: default avatarAmir Vadai <amirv@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b4fc1a46
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
@@ -78,27 +78,24 @@ MLX4_EN_PARM_INT(inline_thold, MAX_INLINE,
#define MAX_PFC_TX     0xff
#define MAX_PFC_RX     0xff

int en_print(const char *level, const struct mlx4_en_priv *priv,
void en_print(const char *level, const struct mlx4_en_priv *priv,
	      const char *format, ...)
{
	va_list args;
	struct va_format vaf;
	int i;

	va_start(args, format);

	vaf.fmt = format;
	vaf.va = &args;
	if (priv->registered)
		i = printk("%s%s: %s: %pV",
		printk("%s%s: %s: %pV",
		       level, DRV_NAME, priv->dev->name, &vaf);
	else
		i = printk("%s%s: %s: Port %d: %pV",
		printk("%s%s: %s: Port %d: %pV",
		       level, DRV_NAME, dev_name(&priv->mdev->pdev->dev),
		       priv->port, &vaf);
	va_end(args);

	return i;
}

void mlx4_en_update_loopback_state(struct net_device *dev,
+2 −2
Original line number Diff line number Diff line
@@ -842,7 +842,7 @@ extern const struct ethtool_ops mlx4_en_ethtool_ops;
 */

__printf(3, 4)
int en_print(const char *level, const struct mlx4_en_priv *priv,
void en_print(const char *level, const struct mlx4_en_priv *priv,
	      const char *format, ...);

#define en_dbg(mlevel, priv, format, ...)				\