Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fdd55d14 authored by Pavel Roskin's avatar Pavel Roskin Committed by John W. Linville
Browse files

ath5k: remove unneeded parentheses after return

parent 0a5d3813
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -780,7 +780,7 @@ extern int ath5k_modparam_nohwcrypt;

#define AR5K_ASSERT_ENTRY(_e, _s) do {		\
	if (_e >= _s)				\
		return (false);			\
		return false;			\
} while (0)

/*
+1 −1
Original line number Diff line number Diff line
@@ -536,7 +536,7 @@ u64 ath5k_hw_get_tsf64(struct ath5k_hw *ah)

	WARN_ON( i == ATH5K_MAX_TSF_READ );

	return (((u64)tsf_upper1 << 32) | tsf_lower);
	return ((u64)tsf_upper1 << 32) | tsf_lower;
}

/**