staging/octeon:ethernet-rgmii.c: Fix line over 80 characters.
authorAybuke Ozdemir <aybuke.147@gmail.com>
Tue, 18 Mar 2014 19:13:29 +0000 (21:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Mar 2014 20:08:02 +0000 (13:08 -0700)
checkpatch.pl issues with line over
80 characters in ethernet-rgmii.c

Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/octeon/ethernet-rgmii.c

index 25de353..0ec0da3 100644 (file)
@@ -72,7 +72,8 @@ static void cvm_oct_rgmii_poll(struct net_device *dev)
                 * If the 10Mbps preamble workaround is supported and we're
                 * at 10Mbps we may need to do some special checking.
                 */
-               if (USE_10MBPS_PREAMBLE_WORKAROUND && (link_info.s.speed == 10)) {
+               if (USE_10MBPS_PREAMBLE_WORKAROUND &&
+                               (link_info.s.speed == 10)) {
 
                        /*
                         * Read the GMXX_RXX_INT_REG[PCTERR] bit and
@@ -231,8 +232,10 @@ static irqreturn_t cvm_oct_rgmii_rml_interrupt(int cpl, void *dev_id)
                                                   (interface, index)];
                                struct octeon_ethernet *priv = netdev_priv(dev);
 
-                               if (dev && !atomic_read(&cvm_oct_poll_queue_stopping))
-                                       queue_work(cvm_oct_poll_queue, &priv->port_work);
+                               if (dev &&
+                               !atomic_read(&cvm_oct_poll_queue_stopping))
+                                       queue_work(cvm_oct_poll_queue,
+                                               &priv->port_work);
 
                                gmx_rx_int_reg.u64 = 0;
                                gmx_rx_int_reg.s.phy_dupx = 1;
@@ -273,8 +276,10 @@ static irqreturn_t cvm_oct_rgmii_rml_interrupt(int cpl, void *dev_id)
                                                   (interface, index)];
                                struct octeon_ethernet *priv = netdev_priv(dev);
 
-                               if (dev && !atomic_read(&cvm_oct_poll_queue_stopping))
-                                       queue_work(cvm_oct_poll_queue, &priv->port_work);
+                               if (dev &&
+                               !atomic_read(&cvm_oct_poll_queue_stopping))
+                                       queue_work(cvm_oct_poll_queue,
+                                               &priv->port_work);
 
                                gmx_rx_int_reg.u64 = 0;
                                gmx_rx_int_reg.s.phy_dupx = 1;
@@ -326,7 +331,8 @@ int cvm_oct_rgmii_stop(struct net_device *dev)
 
 static void cvm_oct_rgmii_immediate_poll(struct work_struct *work)
 {
-       struct octeon_ethernet *priv = container_of(work, struct octeon_ethernet, port_work);
+       struct octeon_ethernet *priv =
+               container_of(work, struct octeon_ethernet, port_work);
        cvm_oct_rgmii_poll(cvm_oct_device[priv->port]);
 }