diff mbox series

[net-next] net: lan743x: Remove extranous gotos

Message ID 20230602000414.3294036-1-moritzf@google.com (mailing list archive)
State Accepted
Commit 0f0f5868689ecbf643b723fae1a353c5a11a8e46
Delegated to: Netdev Maintainers
Headers show
Series [net-next] net: lan743x: Remove extranous gotos | expand

Checks

Context Check Description
netdev/series_format success Single patches do not need cover letters
netdev/tree_selection success Clearly marked for net-next
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 8 this patch: 8
netdev/cc_maintainers success CCed 7 of 7 maintainers
netdev/build_clang success Errors and warnings before: 8 this patch: 8
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 8 this patch: 8
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 43 lines checked
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Moritz Fischer June 2, 2023, 12:04 a.m. UTC
The gotos for cleanup aren't required, the function
might as well just return the actual error code.

Signed-off-by: Moritz Fischer <moritzf@google.com>
---
 drivers/net/ethernet/microchip/lan743x_main.c | 20 +++++--------------
 1 file changed, 5 insertions(+), 15 deletions(-)

Comments

Siddharth Vadapalli June 2, 2023, 8:54 a.m. UTC | #1
On 02/06/23 05:34, Moritz Fischer wrote:
> The gotos for cleanup aren't required, the function
> might as well just return the actual error code.
> 
> Signed-off-by: Moritz Fischer <moritzf@google.com>

Reviewed-by: Siddharth Vadapalli <s-vadapalli@ti.com>

> ---
>  drivers/net/ethernet/microchip/lan743x_main.c | 20 +++++--------------
>  1 file changed, 5 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/net/ethernet/microchip/lan743x_main.c b/drivers/net/ethernet/microchip/lan743x_main.c
> index 957d96a91a8a..f1bded993edc 100644
> --- a/drivers/net/ethernet/microchip/lan743x_main.c
> +++ b/drivers/net/ethernet/microchip/lan743x_main.c
> @@ -160,16 +160,13 @@ static int lan743x_csr_init(struct lan743x_adapter *adapter)
>  {
>  	struct lan743x_csr *csr = &adapter->csr;
>  	resource_size_t bar_start, bar_length;
> -	int result;
>  
>  	bar_start = pci_resource_start(adapter->pdev, 0);
>  	bar_length = pci_resource_len(adapter->pdev, 0);
>  	csr->csr_address = devm_ioremap(&adapter->pdev->dev,
>  					bar_start, bar_length);
> -	if (!csr->csr_address) {
> -		result = -ENOMEM;
> -		goto clean_up;
> -	}
> +	if (!csr->csr_address)
> +		return -ENOMEM;
>  
>  	csr->id_rev = lan743x_csr_read(adapter, ID_REV);
>  	csr->fpga_rev = lan743x_csr_read(adapter, FPGA_REV);
> @@ -177,10 +174,8 @@ static int lan743x_csr_init(struct lan743x_adapter *adapter)
>  		   "ID_REV = 0x%08X, FPGA_REV = %d.%d\n",
>  		   csr->id_rev,	FPGA_REV_GET_MAJOR_(csr->fpga_rev),
>  		   FPGA_REV_GET_MINOR_(csr->fpga_rev));
> -	if (!ID_REV_IS_VALID_CHIP_ID_(csr->id_rev)) {
> -		result = -ENODEV;
> -		goto clean_up;
> -	}
> +	if (!ID_REV_IS_VALID_CHIP_ID_(csr->id_rev))
> +		return -ENODEV;
>  
>  	csr->flags = LAN743X_CSR_FLAG_SUPPORTS_INTR_AUTO_SET_CLR;
>  	switch (csr->id_rev & ID_REV_CHIP_REV_MASK_) {
> @@ -193,12 +188,7 @@ static int lan743x_csr_init(struct lan743x_adapter *adapter)
>  		break;
>  	}
>  
> -	result = lan743x_csr_light_reset(adapter);
> -	if (result)
> -		goto clean_up;
> -	return 0;
> -clean_up:
> -	return result;
> +	return lan743x_csr_light_reset(adapter);
>  }
>  
>  static void lan743x_intr_software_isr(struct lan743x_adapter *adapter)
patchwork-bot+netdevbpf@kernel.org June 2, 2023, 9:50 a.m. UTC | #2
Hello:

This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:

On Fri,  2 Jun 2023 00:04:14 +0000 you wrote:
> The gotos for cleanup aren't required, the function
> might as well just return the actual error code.
> 
> Signed-off-by: Moritz Fischer <moritzf@google.com>
> ---
>  drivers/net/ethernet/microchip/lan743x_main.c | 20 +++++--------------
>  1 file changed, 5 insertions(+), 15 deletions(-)

Here is the summary with links:
  - [net-next] net: lan743x: Remove extranous gotos
    https://git.kernel.org/netdev/net-next/c/0f0f5868689e

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/microchip/lan743x_main.c b/drivers/net/ethernet/microchip/lan743x_main.c
index 957d96a91a8a..f1bded993edc 100644
--- a/drivers/net/ethernet/microchip/lan743x_main.c
+++ b/drivers/net/ethernet/microchip/lan743x_main.c
@@ -160,16 +160,13 @@  static int lan743x_csr_init(struct lan743x_adapter *adapter)
 {
 	struct lan743x_csr *csr = &adapter->csr;
 	resource_size_t bar_start, bar_length;
-	int result;
 
 	bar_start = pci_resource_start(adapter->pdev, 0);
 	bar_length = pci_resource_len(adapter->pdev, 0);
 	csr->csr_address = devm_ioremap(&adapter->pdev->dev,
 					bar_start, bar_length);
-	if (!csr->csr_address) {
-		result = -ENOMEM;
-		goto clean_up;
-	}
+	if (!csr->csr_address)
+		return -ENOMEM;
 
 	csr->id_rev = lan743x_csr_read(adapter, ID_REV);
 	csr->fpga_rev = lan743x_csr_read(adapter, FPGA_REV);
@@ -177,10 +174,8 @@  static int lan743x_csr_init(struct lan743x_adapter *adapter)
 		   "ID_REV = 0x%08X, FPGA_REV = %d.%d\n",
 		   csr->id_rev,	FPGA_REV_GET_MAJOR_(csr->fpga_rev),
 		   FPGA_REV_GET_MINOR_(csr->fpga_rev));
-	if (!ID_REV_IS_VALID_CHIP_ID_(csr->id_rev)) {
-		result = -ENODEV;
-		goto clean_up;
-	}
+	if (!ID_REV_IS_VALID_CHIP_ID_(csr->id_rev))
+		return -ENODEV;
 
 	csr->flags = LAN743X_CSR_FLAG_SUPPORTS_INTR_AUTO_SET_CLR;
 	switch (csr->id_rev & ID_REV_CHIP_REV_MASK_) {
@@ -193,12 +188,7 @@  static int lan743x_csr_init(struct lan743x_adapter *adapter)
 		break;
 	}
 
-	result = lan743x_csr_light_reset(adapter);
-	if (result)
-		goto clean_up;
-	return 0;
-clean_up:
-	return result;
+	return lan743x_csr_light_reset(adapter);
 }
 
 static void lan743x_intr_software_isr(struct lan743x_adapter *adapter)