Skip to content

Commit

Permalink
mlxbf_gige: fix white space in mlxbf_gige_eth_ioctl
Browse files Browse the repository at this point in the history
This patch fixes the white space issue raised by checkpatch:
CHECK: Alignment should match open parenthesis
+static int mlxbf_gige_eth_ioctl(struct net_device *netdev,
+                              struct ifreq *ifr, int cmd)

Signed-off-by: David Thompson <davthompson@nvidia.com>
Signed-off-by: Asmaa Mnebhi <asmaa@nvidia.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
David Thompson authored and Jakub Kicinski committed Jan 14, 2023
1 parent cedd977 commit e1cc8ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ static int mlxbf_gige_stop(struct net_device *netdev)
}

static int mlxbf_gige_eth_ioctl(struct net_device *netdev,
struct ifreq *ifr, int cmd)
struct ifreq *ifr, int cmd)
{
if (!(netif_running(netdev)))
return -EINVAL;
Expand Down

0 comments on commit e1cc8ce

Please sign in to comment.