aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2012-08-17 07:09:37 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-08-17 12:46:52 -0400
commitbf2023614201b36f929cce0d9fbb3cc856ea7c1a (patch)
tree98abe5eeeb74ab9d601ea49961f5e3393beccb56
parentefde99cd281a3f0d3562bb2fa7e7ef60ad32fe8d (diff)
Staging: android: binder: Remove an inconsequential conditional macro
Removes an inconsequential conditional macro. Cc: Arve Hjønnevåg <arve@android.com> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/android/binder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/android/binder.c b/drivers/staging/android/binder.c
index 668bec7213d5..a807129c7b5a 100644
--- a/drivers/staging/android/binder.c
+++ b/drivers/staging/android/binder.c
@@ -415,13 +415,13 @@ repeat:
415 else 415 else
416 __clear_close_on_exec(fd, fdt); 416 __clear_close_on_exec(fd, fdt);
417 files->next_fd = fd + 1; 417 files->next_fd = fd + 1;
418#if 1 418
419 /* Sanity check */ 419 /* Sanity check */
420 if (fdt->fd[fd] != NULL) { 420 if (fdt->fd[fd] != NULL) {
421 pr_warn("get_unused_fd: slot %d not NULL!\n", fd); 421 pr_warn("get_unused_fd: slot %d not NULL!\n", fd);
422 fdt->fd[fd] = NULL; 422 fdt->fd[fd] = NULL;
423 } 423 }
424#endif 424
425 error = fd; 425 error = fd;
426 426
427out: 427out: