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

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
...@@ -245,7 +245,8 @@ void read_efuse(struct ieee80211_hw *hw, u16 _offset, u16 _size_byte, u8 *pbuf) ...@@ -245,7 +245,8 @@ void read_efuse(struct ieee80211_hw *hw, u16 _offset, u16 _size_byte, u8 *pbuf)
if (!efuse_word) if (!efuse_word)
goto out; goto out;
for (i = 0; i < EFUSE_MAX_WORD_UNIT; i++) { 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]) if (!efuse_word[i])
goto done; goto done;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment