diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 10:14:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 10:14:45 -0700 |
commit | b4d0b08a4c3947c6ac004c9d83154ec5999c1861 (patch) | |
tree | c0f3ece1274d868c6288cc2843918c31b4885f43 /net/9p/Makefile | |
parent | 33217379becdee25021cabb25032b3bf703d0e96 (diff) | |
parent | e45c5405e12c7cef93940cb7a541ab459ec0096a (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
9p: fix sparse warnings
9p: rdma: RDMA Transport Support for 9P
9p: fix format warning
9p: fix debug build error
Diffstat (limited to 'net/9p/Makefile')
-rw-r--r-- | net/9p/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/9p/Makefile b/net/9p/Makefile index 1041b7bd12e..198a640d53a 100644 --- a/net/9p/Makefile +++ b/net/9p/Makefile @@ -1,5 +1,6 @@ obj-$(CONFIG_NET_9P) := 9pnet.o obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o +obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o 9pnet-objs := \ mod.o \ @@ -11,3 +12,6 @@ obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o 9pnet_virtio-objs := \ trans_virtio.o \ + +9pnet_rdma-objs := \ + trans_rdma.o \ |