[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1309190759.3344.10.camel@Joe-Laptop>
Date: Mon, 27 Jun 2011 09:05:59 -0700
From: Joe Perches <joe@...ches.com>
To: Jon Mason <mason@...i.com>
Cc: davem@...emloft.net, netdev@...r.kernel.org,
Andrew Gallatin <gallatin@...i.com>
Subject: Re: [PATCH 7/9] myri10ge: misc style cleanups
On Mon, 2011-06-27 at 10:05 -0500, Jon Mason wrote:
> Miscellaneous white space, style, and other cleanups
[]
> diff --git a/drivers/net/myri10ge/myri10ge.c b/drivers/net/myri10ge/myri10ge.c
[]
> @@ -1538,9 +1538,10 @@ static inline void myri10ge_check_statblock(struct myri10ge_priv *mgp)
> } else {
> if (netif_msg_link(mgp))
> netdev_info(mgp->dev, "link %s\n",
> - link_up == MXGEFW_LINK_MYRINET ?
> - "mismatch (Myrinet detected)" :
> - "down");
> + (link_up ==
> + MXGEFW_LINK_MYRINET ?
> + "mismatch (Myrinet detected)"
> + : "down"));
This could be:
netif_info(mgp, link, mgp->dev, "link %s\n"
link_up == MXGEFW_LINK_MYRINET ?
"mismatch (Myrinet detected)" :
"down");
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists