Merge "ServiceManager: Print kernel/userspace binder version"

This commit is contained in:
Elliott Hughes 2015-04-04 00:03:45 +00:00 committed by Gerrit Code Review
commit 031fec0b9d

View File

@ -113,7 +113,9 @@ struct binder_state *binder_open(size_t mapsize)
if ((ioctl(bs->fd, BINDER_VERSION, &vers) == -1) ||
(vers.protocol_version != BINDER_CURRENT_PROTOCOL_VERSION)) {
fprintf(stderr, "binder: driver version differs from user space\n");
fprintf(stderr,
"binder: kernel driver version (%d) differs from user space version (%d)\n",
vers.protocol_version, BINDER_CURRENT_PROTOCOL_VERSION);
goto fail_open;
}