Skip to content

Commit d693308

Browse files
committed
net: ena: Fix incorrect indentation
JIRA: https://issues.redhat.com/browse/RHEL-94831 commit 36e32b3 Author: Shay Agroskin <shayagr@amazon.com> Date: Thu Dec 12 13:59:08 2024 +0200 net: ena: Fix incorrect indentation The assignment was accidentally aligned to the string one line before. This was raised by the kernel bot. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202412101739.umNl7yYu-lkp@intel.com/ Signed-off-by: David Arinzon <darinzon@amazon.com> Signed-off-by: Shay Agroskin <shayagr@amazon.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20241212115910.2485851-1-shayagr@amazon.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Dennis Chen <dechen@redhat.com>
1 parent a0aef68 commit d693308

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/amazon/ena/ena_netdev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ static void ena_tx_timeout(struct net_device *dev, unsigned int txqueue)
7474
if (threshold < time_since_last_napi && napi_scheduled) {
7575
netdev_err(dev,
7676
"napi handler hasn't been called for a long time but is scheduled\n");
77-
reset_reason = ENA_REGS_RESET_SUSPECTED_POLL_STARVATION;
77+
reset_reason = ENA_REGS_RESET_SUSPECTED_POLL_STARVATION;
7878
}
7979
schedule_reset:
8080
/* Change the state of the device to trigger reset

0 commit comments

Comments
 (0)