Staging: rtlwifi: efuse: Fixed a line length code styling issue.
authorTom Todd <thomas.m.a.todd@gmail.com>
Sat, 1 Sep 2018 12:28:06 +0000 (13:28 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 10 Sep 2018 15:05:45 +0000 (17:05 +0200)
Fixed a code styling issue.

Signed-off-by: Tom Todd <thomas.m.a.todd@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtlwifi/efuse.c

index 1dc7145..abb0f72 100644 (file)
@@ -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;
        }