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

Commit 24a39f70 authored by Andrew Miller's avatar Andrew Miller Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8187se: r8180_core.c: Fix some spacing issues



Removed spaces before tabs and
moved while statement in front of '}'

Signed-off-by: default avatarAndrew Miller <amiller@amilx.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cd686808
Loading
Loading
Loading
Loading
+5 −6
Original line number Original line Diff line number Diff line
@@ -439,8 +439,7 @@ void buffer_free(struct net_device *dev, struct buffer **buffer, int len, short
		}
		}
		kfree(tmp);
		kfree(tmp);
		tmp = next;
		tmp = next;
	}
	} while (next != *buffer);
	while (next != *buffer);


	*buffer = NULL;
	*buffer = NULL;
}
}