libbinder: disable disabled tidy warnings

Before we disabled a clang tidy warning by reducing it to a warning.
This was invisible at the time, but now that clang is updated, it's
build log spam.

Fixes: 186144656
Test: build and no logs
Test: introduce a clang-tidy violation to make sure other checks are
    still enabled
Change-Id: I53a55949f809a9c05b3676c11e679ac3d98614eb
diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp
index cba8207..b489d52 100644
--- a/libs/binder/Android.bp
+++ b/libs/binder/Android.bp
@@ -192,6 +192,9 @@
         // Only check our headers
         "--header-filter=^.*frameworks/native/libs/binder/.*.h$",
     ],
+    tidy_checks: [
+        "-performance-no-int-to-ptr",
+    ],
     tidy_checks_as_errors: [
         // Explicitly list the checks that should not occur in this module.
         "abseil-*",
@@ -212,7 +215,6 @@
         "-misc-redundant-expression",
         "-misc-unused-using-decls",
         "performance*",
-        "-performance-no-int-to-ptr",
         "portability*",
     ],