netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Lothar Waßmann" <LW@KARO-electronics.de>
To: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, "Shawn Guo" <shawn.guo@linaro.org>,
	linux-arm-kernel@lists.infradead.org,
	"Lothar Waßmann" <LW@KARO-electronics.de>
Subject: [PATCH][NET] several cleanups and bugfixes for fec.c: misc cleanups
Date: Tue,  6 Dec 2011 11:27:09 +0100	[thread overview]
Message-ID: <bd4415514fa0b40ece04d56b3ac4f549e79d87d7.1323163127.git.LW@KARO-electronics.de> (raw)
In-Reply-To: <cover.1323163127.git.LW@KARO-electronics.de>
In-Reply-To: <cover.1323163127.git.LW@KARO-electronics.de>

 - remove some bogus whitespace
 - remove line wraps from printk messages

Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de>
---
 drivers/net/ethernet/freescale/fec.c |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c
index 1124ce0..f224e58 100644
--- a/drivers/net/ethernet/freescale/fec.c
+++ b/drivers/net/ethernet/freescale/fec.c
@@ -99,7 +99,7 @@ static struct platform_device_id fec_devtype[] = {
 MODULE_DEVICE_TABLE(platform, fec_devtype);
 
 enum imx_fec_type {
-	IMX25_FEC = 1, 	/* runs on i.mx25/50/53 */
+	IMX25_FEC = 1,	/* runs on i.mx25/50/53 */
 	IMX27_FEC,	/* runs on i.mx27/35/51 */
 	IMX28_FEC,
 	IMX6Q_FEC,
@@ -132,7 +132,7 @@ MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
 #elif defined (CONFIG_M5272C3)
 #define	FEC_FLASHMAC	(0xffe04000 + 4)
 #elif defined(CONFIG_MOD5272)
-#define FEC_FLASHMAC 	0xffc0406b
+#define FEC_FLASHMAC	0xffc0406b
 #else
 #define	FEC_FLASHMAC	0
 #endif
@@ -972,8 +972,9 @@ static int fec_enet_mii_probe(struct net_device *ndev)
 	}
 
 	if (phy_id >= PHY_MAX_ADDR) {
-		printk(KERN_INFO "%s: no PHY, assuming direct connection "
-			"to switch\n", ndev->name);
+		printk(KERN_INFO
+			"%s: no PHY, assuming direct connection to switch\n",
+			ndev->name);
 		strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
 		phy_id = 0;
 	}
@@ -998,8 +999,9 @@ static int fec_enet_mii_probe(struct net_device *ndev)
 	fep->link = 0;
 	fep->full_duplex = 0;
 
-	printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
-		"(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
+	printk(KERN_INFO
+		"%s: Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
+		ndev->name,
 		fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
 		fep->phy_dev->irq);
 
-- 
1.5.6.5

  reply	other threads:[~2011-12-06 10:27 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-06 10:27 [PATCH][NET] several cleanups and bugfixes for fec.c Lothar Waßmann
2011-12-06 10:27 ` Lothar Waßmann [this message]
2011-12-06 10:27   ` [PATCH][NET] several cleanups and bugfixes for fec.c: set con_id in clk_get() call to NULL Lothar Waßmann
2011-12-06 10:27     ` [PATCH][NET] several cleanups and bugfixes for fec.c: prevent dobule restart of interface on FDX/HDX change Lothar Waßmann
2011-12-06 10:27       ` [PATCH][NET] several cleanups and bugfixes for fec.c: don't request invalid IRQ Lothar Waßmann
2011-12-06 10:27         ` [PATCH][NET] several cleanups and bugfixes for fec.c: don't munge MAC address from platform data Lothar Waßmann
2011-12-06 10:27           ` [PATCH][NET] several cleanups and bugfixes for fec.c: preserve MII/RMII setting in fec_stop() Lothar Waßmann
2011-12-06 10:27             ` [PATCH][NET] several cleanups and bugfixes for fec.c: fix the .remove code Lothar Waßmann
2011-12-06 10:27               ` [PATCH][NET] several cleanups and bugfixes for fec.c: make FEC driver buildable as module Lothar Waßmann
2011-12-07 13:28               ` [PATCH][NET] several cleanups and bugfixes for fec.c: fix the .remove code Shawn Guo
2011-12-07 13:26                 ` Lothar Waßmann
2011-12-07 13:43                   ` Shawn Guo
2011-12-07  9:41             ` [PATCH][NET] several cleanups and bugfixes for fec.c: preserve MII/RMII setting in fec_stop() Shawn Guo
2011-12-07 10:42               ` Lothar Waßmann
2011-12-07 10:58                 ` Shawn Guo
2011-12-07 10:49                   ` Lothar Waßmann
2011-12-07 11:15                     ` Shawn Guo
2011-12-07 13:37                 ` Shawn Guo
2011-12-06 12:48           ` [PATCH][NET] several cleanups and bugfixes for fec.c: don't munge MAC address from platform data Baruch Siach
2011-12-06 13:44             ` Lothar Waßmann
2011-12-07  8:57               ` Shawn Guo
2011-12-07  8:47                 ` Lothar Waßmann
2011-12-07  8:49           ` Shawn Guo
2011-12-07  8:47             ` Lothar Waßmann
2011-12-07  9:14               ` Shawn Guo
2011-12-07  8:27         ` [PATCH][NET] several cleanups and bugfixes for fec.c: don't request invalid IRQ Shawn Guo
2011-12-06 15:24       ` [PATCH][NET] several cleanups and bugfixes for fec.c: prevent dobule restart of interface on FDX/HDX change Ben Hutchings
2011-12-07  8:26     ` [PATCH][NET] several cleanups and bugfixes for fec.c: set con_id in clk_get() call to NULL Shawn Guo
2011-12-07  8:25   ` [PATCH][NET] several cleanups and bugfixes for fec.c: misc cleanups Shawn Guo
2011-12-06 18:17 ` [PATCH][NET] several cleanups and bugfixes for fec.c David Miller
2011-12-29  6:38 ` Dirk Behme
2011-12-29  7:14   ` Shawn Guo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bd4415514fa0b40ece04d56b3ac4f549e79d87d7.1323163127.git.LW@KARO-electronics.de \
    --to=lw@karo-electronics.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=shawn.guo@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).