Commit 3a8542bf authored by Tom Todd's avatar Tom Todd Committed by Greg Kroah-Hartman
Browse files

Staging: rtlwifi: efuse: Fixed a line length code styling issue.



Fixed a code styling issue.

Signed-off-by: default avatarTom Todd <thomas.m.a.todd@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bc554d1e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -245,7 +245,8 @@ void read_efuse(struct ieee80211_hw *hw, u16 _offset, u16 _size_byte, u8 *pbuf)
	if (!efuse_word)
		goto out;
	for (i = 0; i < EFUSE_MAX_WORD_UNIT; i++) {
		efuse_word[i] = kcalloc(efuse_max_section, sizeof(u16), GFP_ATOMIC);
		efuse_word[i] = kcalloc(efuse_max_section, sizeof(u16),
					GFP_ATOMIC);
		if (!efuse_word[i])
			goto done;
	}