diff mbox series

[06/30] net: eepro100: Fix parenthesis alignment

Message ID 20200523163837.407592-6-marek.vasut+renesas@gmail.com
State Accepted
Commit 773af836daee64743a51450ee25d758283d4281f
Delegated to: Joe Hershberger
Headers show
Series [01/30] net: eepro100: Remove EEPRO100_SROM_WRITE | expand

Commit Message

Marek Vasut May 23, 2020, 4:38 p.m. UTC
This is automated cleanup via checkpatch, no functional change.
./scripts/checkpatch.pl --show-types -f drivers/net/eepro100.c
./scripts/checkpatch.pl --types PARENTHESIS_ALIGNMENT -f --fix --fix-inplace drivers/net/eepro100.c

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
---
 drivers/net/eepro100.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

Comments

Ramon Fried May 23, 2020, 5:12 p.m. UTC | #1
On Sat, May 23, 2020 at 7:40 PM Marek Vasut <marek.vasut@gmail.com> wrote:
>
> This is automated cleanup via checkpatch, no functional change.
> ./scripts/checkpatch.pl --show-types -f drivers/net/eepro100.c
> ./scripts/checkpatch.pl --types PARENTHESIS_ALIGNMENT -f --fix --fix-inplace drivers/net/eepro100.c
>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
> ---
>  drivers/net/eepro100.c | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/net/eepro100.c b/drivers/net/eepro100.c
> index 6dccd59bda..d367052cd2 100644
> --- a/drivers/net/eepro100.c
> +++ b/drivers/net/eepro100.c
> @@ -240,7 +240,7 @@ static inline int INL(struct eth_device *dev, u_long addr)
>  }
>
>  static int get_phyreg(struct eth_device *dev, unsigned char addr,
> -               unsigned char reg, unsigned short *value)
> +                     unsigned char reg, unsigned short *value)
>  {
>         int cmd;
>         int timeout = 50;
> @@ -263,7 +263,7 @@ static int get_phyreg(struct eth_device *dev, unsigned char addr,
>  }
>
>  static int set_phyreg(struct eth_device *dev, unsigned char addr,
> -               unsigned char reg, unsigned short value)
> +                     unsigned char reg, unsigned short value)
>  {
>         int cmd;
>         int timeout = 50;
> @@ -286,7 +286,7 @@ static int set_phyreg(struct eth_device *dev, unsigned char addr,
>   * Do this by checking model value field from ID2 register.
>   */
>  static struct eth_device* verify_phyaddr(const char *devname,
> -                                               unsigned char addr)
> +                                        unsigned char addr)
>  {
>         struct eth_device *dev;
>         unsigned short value;
> @@ -393,7 +393,7 @@ int eepro100_initialize(bd_t * bis)
>                       iobase);
>
>                 pci_write_config_dword(devno,
> -                                       PCI_COMMAND,
> +                                      PCI_COMMAND,
>                                         PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
>
>                 /* Check if I/O accesses and Bus Mastering are enabled. */
> @@ -504,7 +504,7 @@ static int eepro100_init(struct eth_device *dev, bd_t * bis)
>         cfg_cmd->link = cpu_to_le32 (phys_to_bus((u32)&tx_ring[tx_next]));
>
>         memcpy(cfg_cmd->params, i82558_config_cmd,
> -                       sizeof(i82558_config_cmd));
> +              sizeof(i82558_config_cmd));
>
>         if (!wait_for_eepro100(dev)) {
>                 printf("Error---CONFIG_SYS_CMD_CONFIGURE: Can not reset ethernet controller.\n");
> @@ -525,7 +525,7 @@ static int eepro100_init(struct eth_device *dev, bd_t * bis)
>
>         if (!(le16_to_cpu(tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
>                 printf("TX error status = 0x%08X\n",
> -                       le16_to_cpu(tx_ring[tx_cur].status));
> +                      le16_to_cpu(tx_ring[tx_cur].status));
>                 goto Done;
>         }
>
> @@ -553,14 +553,14 @@ static int eepro100_init(struct eth_device *dev, bd_t * bis)
>                  i++) {
>                 if (i >= TOUT_LOOP) {
>                         printf("%s: Tx error buffer not ready\n",
> -                               dev->name);
> +                              dev->name);
>                         goto Done;
>                 }
>         }
>
>         if (!(le16_to_cpu(tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
>                 printf("TX error status = 0x%08X\n",
> -                       le16_to_cpu(tx_ring[tx_cur].status));
> +                      le16_to_cpu(tx_ring[tx_cur].status));
>                 goto Done;
>         }
>
> @@ -599,7 +599,7 @@ static int eepro100_send(struct eth_device *dev, void *packet, int length)
>
>         if (!wait_for_eepro100(dev)) {
>                 printf("%s: Tx error ethernet controller not ready.\n",
> -                               dev->name);
> +                      dev->name);
>                 goto Done;
>         }
>
> @@ -617,7 +617,7 @@ static int eepro100_send(struct eth_device *dev, void *packet, int length)
>
>         if (!(le16_to_cpu(tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
>                 printf("TX error status = 0x%08X\n",
> -                       le16_to_cpu(tx_ring[tx_cur].status));
> +                      le16_to_cpu(tx_ring[tx_cur].status));
>                 goto Done;
>         }
>
> --
> 2.25.1
>
Reviewed-By: Ramon Fried <rfried.dev@gmail.com>
diff mbox series

Patch

diff --git a/drivers/net/eepro100.c b/drivers/net/eepro100.c
index 6dccd59bda..d367052cd2 100644
--- a/drivers/net/eepro100.c
+++ b/drivers/net/eepro100.c
@@ -240,7 +240,7 @@  static inline int INL(struct eth_device *dev, u_long addr)
 }
 
 static int get_phyreg(struct eth_device *dev, unsigned char addr,
-		unsigned char reg, unsigned short *value)
+		      unsigned char reg, unsigned short *value)
 {
 	int cmd;
 	int timeout = 50;
@@ -263,7 +263,7 @@  static int get_phyreg(struct eth_device *dev, unsigned char addr,
 }
 
 static int set_phyreg(struct eth_device *dev, unsigned char addr,
-		unsigned char reg, unsigned short value)
+		      unsigned char reg, unsigned short value)
 {
 	int cmd;
 	int timeout = 50;
@@ -286,7 +286,7 @@  static int set_phyreg(struct eth_device *dev, unsigned char addr,
  * Do this by checking model value field from ID2 register.
  */
 static struct eth_device* verify_phyaddr(const char *devname,
-						unsigned char addr)
+					 unsigned char addr)
 {
 	struct eth_device *dev;
 	unsigned short value;
@@ -393,7 +393,7 @@  int eepro100_initialize(bd_t * bis)
 		      iobase);
 
 		pci_write_config_dword(devno,
-					PCI_COMMAND,
+				       PCI_COMMAND,
 					PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
 
 		/* Check if I/O accesses and Bus Mastering are enabled. */
@@ -504,7 +504,7 @@  static int eepro100_init(struct eth_device *dev, bd_t * bis)
 	cfg_cmd->link = cpu_to_le32 (phys_to_bus((u32)&tx_ring[tx_next]));
 
 	memcpy(cfg_cmd->params, i82558_config_cmd,
-			sizeof(i82558_config_cmd));
+	       sizeof(i82558_config_cmd));
 
 	if (!wait_for_eepro100(dev)) {
 		printf("Error---CONFIG_SYS_CMD_CONFIGURE: Can not reset ethernet controller.\n");
@@ -525,7 +525,7 @@  static int eepro100_init(struct eth_device *dev, bd_t * bis)
 
 	if (!(le16_to_cpu(tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
 		printf("TX error status = 0x%08X\n",
-			le16_to_cpu(tx_ring[tx_cur].status));
+		       le16_to_cpu(tx_ring[tx_cur].status));
 		goto Done;
 	}
 
@@ -553,14 +553,14 @@  static int eepro100_init(struct eth_device *dev, bd_t * bis)
 		 i++) {
 		if (i >= TOUT_LOOP) {
 			printf("%s: Tx error buffer not ready\n",
-				dev->name);
+			       dev->name);
 			goto Done;
 		}
 	}
 
 	if (!(le16_to_cpu(tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
 		printf("TX error status = 0x%08X\n",
-			le16_to_cpu(tx_ring[tx_cur].status));
+		       le16_to_cpu(tx_ring[tx_cur].status));
 		goto Done;
 	}
 
@@ -599,7 +599,7 @@  static int eepro100_send(struct eth_device *dev, void *packet, int length)
 
 	if (!wait_for_eepro100(dev)) {
 		printf("%s: Tx error ethernet controller not ready.\n",
-				dev->name);
+		       dev->name);
 		goto Done;
 	}
 
@@ -617,7 +617,7 @@  static int eepro100_send(struct eth_device *dev, void *packet, int length)
 
 	if (!(le16_to_cpu(tx_ring[tx_cur].status) & CONFIG_SYS_STATUS_OK)) {
 		printf("TX error status = 0x%08X\n",
-			le16_to_cpu(tx_ring[tx_cur].status));
+		       le16_to_cpu(tx_ring[tx_cur].status));
 		goto Done;
 	}