diff options
| author | Joe Perches <joe@perches.com> | 2009-12-03 07:58:21 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2009-12-03 13:18:01 -0800 | 
| commit | 8e95a2026f3b43f7c3d676adaccd2de9532e8dcc (patch) | |
| tree | 3733318168cd512480b6db58c5c16d1c8847f0b7 /drivers/net/netxen/netxen_nic_ethtool.c | |
| parent | 3454f835837609d60b29a266e3bd9d701073b060 (diff) | |
| download | olio-linux-3.10-8e95a2026f3b43f7c3d676adaccd2de9532e8dcc.tar.xz olio-linux-3.10-8e95a2026f3b43f7c3d676adaccd2de9532e8dcc.zip  | |
drivers/net: Move && and || to end of previous line
Only files where David Miller is the primary git-signer.
wireless, wimax, ixgbe, etc are not modified.
Compile tested x86 allyesconfig only
Not all files compiled (not x86 compatible)
Added a few > 80 column lines, which I ignored.
Existing checkpatch complaints ignored.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/netxen/netxen_nic_ethtool.c')
| -rw-r--r-- | drivers/net/netxen/netxen_nic_ethtool.c | 32 | 
1 files changed, 16 insertions, 16 deletions
diff --git a/drivers/net/netxen/netxen_nic_ethtool.c b/drivers/net/netxen/netxen_nic_ethtool.c index c86095eb5d9..ddd704ae018 100644 --- a/drivers/net/netxen/netxen_nic_ethtool.c +++ b/drivers/net/netxen/netxen_nic_ethtool.c @@ -257,18 +257,18 @@ netxen_nic_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)  	/* read which mode */  	if (adapter->ahw.port_type == NETXEN_NIC_GBE) {  		/* autonegotiation */ -		if (adapter->phy_write -		    && adapter->phy_write(adapter, -					  NETXEN_NIU_GB_MII_MGMT_ADDR_AUTONEG, -					  ecmd->autoneg) != 0) +		if (adapter->phy_write && +		    adapter->phy_write(adapter, +				       NETXEN_NIU_GB_MII_MGMT_ADDR_AUTONEG, +				       ecmd->autoneg) != 0)  			return -EIO;  		else  			adapter->link_autoneg = ecmd->autoneg; -		if (adapter->phy_read -		    && adapter->phy_read(adapter, -					 NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS, -					 &status) != 0) +		if (adapter->phy_read && +		    adapter->phy_read(adapter, +				      NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS, +				      &status) != 0)  			return -EIO;  		/* speed */ @@ -288,10 +288,10 @@ netxen_nic_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd)  			netxen_clear_phy_duplex(status);  		if (ecmd->duplex == DUPLEX_FULL)  			netxen_set_phy_duplex(status); -		if (adapter->phy_write -		    && adapter->phy_write(adapter, -					  NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS, -					  *((int *)&status)) != 0) +		if (adapter->phy_write && +		    adapter->phy_write(adapter, +				       NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS, +				       *((int *)&status)) != 0)  			return -EIO;  		else {  			adapter->link_speed = ecmd->speed; @@ -442,10 +442,10 @@ static u32 netxen_nic_test_link(struct net_device *dev)  	/* read which mode */  	if (adapter->ahw.port_type == NETXEN_NIC_GBE) { -		if (adapter->phy_read -		    && adapter->phy_read(adapter, -					 NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS, -					 &status) != 0) +		if (adapter->phy_read && +		    adapter->phy_read(adapter, +				      NETXEN_NIU_GB_MII_MGMT_ADDR_PHY_STATUS, +				      &status) != 0)  			return -EIO;  		else {  			val = netxen_get_phy_link(status);  |