aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/android/Makefile
diff options
context:
space:
mode:
authorTodd Kjos <tkjos@android.com>2017-06-29 12:01:41 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-07-17 14:47:29 +0200
commit0c972a05cde66e3d448419c120627083d6419f8f (patch)
tree1e39c8dc522d3cb6445e769310b48bdec99ed479 /drivers/android/Makefile
parentbinder: separate out binder_alloc functions (diff)
downloadlinux-dev-0c972a05cde66e3d448419c120627083d6419f8f.tar.xz
linux-dev-0c972a05cde66e3d448419c120627083d6419f8f.zip
binder: move binder_alloc to separate file
Move the binder allocator functionality to its own file Continuation of splitting the binder allocator from the binder driver. Split binder_alloc functions from normal binder functions. Add kernel doc comments to functions declared extern in binder_alloc.h Signed-off-by: Todd Kjos <tkjos@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/android/Makefile')
-rw-r--r--drivers/android/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/android/Makefile b/drivers/android/Makefile
index 3b7e4b072c58..4b7c726bb560 100644
--- a/drivers/android/Makefile
+++ b/drivers/android/Makefile
@@ -1,3 +1,3 @@
ccflags-y += -I$(src) # needed for trace events
-obj-$(CONFIG_ANDROID_BINDER_IPC) += binder.o
+obj-$(CONFIG_ANDROID_BINDER_IPC) += binder.o binder_alloc.o