Commit 6be1a5ce authored by Shannon Nelson's avatar Shannon Nelson Committed by David S. Miller
Browse files

ionic: clear compiler warning on hb use before set



Build checks have pointed out that 'hb' can theoretically
be used before set, so let's initialize it and get rid
of the compiler complaint.

Signed-off-by: default avatarShannon Nelson <snelson@pensando.io>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c37d6e3f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -330,9 +330,9 @@ int ionic_dev_cmd_wait(struct ionic *ionic, unsigned long max_seconds)
	unsigned long max_wait;
	unsigned long duration;
	int opcode;
	int hb = 0;
	int done;
	int err;
	int hb;

	WARN_ON(in_interrupt());