Commit bff9df7d authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman
Browse files

staging:rtl8192u: Clear error with line ending ( - Style



Rewrite function call to clear the checkpatch issue with lines ending
with a '(' character.

This is a coding style change which should have no impact on runtime
code execution.

Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a631b95f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -64,8 +64,8 @@ static inline int ieee80211_networks_allocate(struct ieee80211_device *ieee)
	if (ieee->networks)
		return 0;

	ieee->networks = kcalloc(
		MAX_NETWORK_COUNT, sizeof(struct ieee80211_network),
	ieee->networks = kcalloc(MAX_NETWORK_COUNT,
				 sizeof(struct ieee80211_network),
				 GFP_KERNEL);
	if (!ieee->networks) {
		printk(KERN_WARNING "%s: Out of memory allocating beacons\n",