[PATCH] staging: android: Clean up else statement from sync_fence_poll()

From: Lucas Tanure
Date: Mon Jul 14 2014 - 23:32:50 EST


Kernel coding style. Remove useless else statement after return.

Signed-off-by: Lucas Tanure <tanure@xxxxxxxxx>
---
drivers/staging/android/sync.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/android/sync.c b/drivers/staging/android/sync.c
index c9a0c2c..e7b2e02 100644
--- a/drivers/staging/android/sync.c
+++ b/drivers/staging/android/sync.c
@@ -555,8 +555,7 @@ static unsigned int sync_fence_poll(struct file *file, poll_table *wait)
return POLLIN;
else if (status < 0)
return POLLERR;
- else
- return 0;
+ return 0;
}

static long sync_fence_ioctl_wait(struct sync_fence *fence, unsigned long arg)
--
2.0.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/