diff options
author | Roland Dreier <rolandd@cisco.com> | 2005-07-07 20:57:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-07 21:23:48 -0400 |
commit | 2d927d696c088ceb22c776e1e89937dc289d4078 (patch) | |
tree | e2b0d444aa785ebc1ee43bc13b9ae93e12a9bec6 /drivers/infiniband/core | |
parent | eb8ffbfed50e7945c024a80e3688d5beffa3b641 (diff) |
[PATCH] IB uverbs: hook up Kconfig/Makefile
Hook up InfiniBand userspace verbs to Kconfig and the make system.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/infiniband/core')
-rw-r--r-- | drivers/infiniband/core/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/infiniband/core/Makefile b/drivers/infiniband/core/Makefile index d2dbfb52c0a3..e1a7cf3e8636 100644 --- a/drivers/infiniband/core/Makefile +++ b/drivers/infiniband/core/Makefile | |||
@@ -1,6 +1,7 @@ | |||
1 | EXTRA_CFLAGS += -Idrivers/infiniband/include | 1 | EXTRA_CFLAGS += -Idrivers/infiniband/include |
2 | 2 | ||
3 | obj-$(CONFIG_INFINIBAND) += ib_core.o ib_mad.o ib_sa.o ib_umad.o | 3 | obj-$(CONFIG_INFINIBAND) += ib_core.o ib_mad.o ib_sa.o ib_umad.o |
4 | obj-$(CONFIG_INFINIBAND_USER_VERBS) += ib_uverbs.o | ||
4 | 5 | ||
5 | ib_core-y := packer.o ud_header.o verbs.o sysfs.o \ | 6 | ib_core-y := packer.o ud_header.o verbs.o sysfs.o \ |
6 | device.o fmr_pool.o cache.o | 7 | device.o fmr_pool.o cache.o |
@@ -10,3 +11,5 @@ ib_mad-y := mad.o smi.o agent.o | |||
10 | ib_sa-y := sa_query.o | 11 | ib_sa-y := sa_query.o |
11 | 12 | ||
12 | ib_umad-y := user_mad.o | 13 | ib_umad-y := user_mad.o |
14 | |||
15 | ib_uverbs-y := uverbs_main.o uverbs_cmd.o uverbs_mem.o | ||