libbinder: setupPolling returns status_t

This is a clarification of the return, which takes the form of a
status_t.

Bug: N/A
Test: static_assert(sizeof(int) == sizeof(status_t))
Change-Id: I472ad66d4a42069046da91a64fc9d65688a147eb
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp
index d67ce15..157538e 100644
--- a/libs/binder/IPCThreadState.cpp
+++ b/libs/binder/IPCThreadState.cpp
@@ -614,7 +614,7 @@
     talkWithDriver(false);
 }
 
-int IPCThreadState::setupPolling(int* fd)
+status_t IPCThreadState::setupPolling(int* fd)
 {
     if (mProcess->mDriverFD < 0) {
         return -EBADF;