Commit 4df9772c authored by Mrinal Pandey's avatar Mrinal Pandey Committed by Greg Kroah-Hartman
Browse files

drivers: android: Fix a variable declaration coding style issue



Add a blank line after variable declarations as suggested by checkpatch.

Signed-off-by: default avatarMrinal Pandey <mrinalmni@gmail.com>
Link: https://lore.kernel.org/r/20200724131254.qxbvderrws36dzzq@mrinalpandey


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4b836a14
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -547,6 +547,7 @@ static void binder_delete_free_buffer(struct binder_alloc *alloc,
{
{
	struct binder_buffer *prev, *next = NULL;
	struct binder_buffer *prev, *next = NULL;
	bool to_free = true;
	bool to_free = true;

	BUG_ON(alloc->buffers.next == &buffer->entry);
	BUG_ON(alloc->buffers.next == &buffer->entry);
	prev = binder_buffer_prev(buffer);
	prev = binder_buffer_prev(buffer);
	BUG_ON(!prev->free);
	BUG_ON(!prev->free);