diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-10-28 11:26:12 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-28 11:26:12 -0400 |
commit | 7a9787e1eba95a166265e6a260cf30af04ef0a99 (patch) | |
tree | e730a4565e0318140d2fbd2f0415d18a339d7336 /net/9p/Makefile | |
parent | 41b9eb264c8407655db57b60b4457fe1b2ec9977 (diff) | |
parent | 0173a3265b228da319ceb9c1ec6a5682fd1b2d92 (diff) |
Merge commit 'v2.6.28-rc2' into x86/pci-ioapic-boot-irq-quirks
Diffstat (limited to 'net/9p/Makefile')
-rw-r--r-- | net/9p/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/9p/Makefile b/net/9p/Makefile index 519219480db1..198a640d53a6 100644 --- a/net/9p/Makefile +++ b/net/9p/Makefile | |||
@@ -1,14 +1,17 @@ | |||
1 | obj-$(CONFIG_NET_9P) := 9pnet.o | 1 | obj-$(CONFIG_NET_9P) := 9pnet.o |
2 | obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o | 2 | obj-$(CONFIG_NET_9P_VIRTIO) += 9pnet_virtio.o |
3 | obj-$(CONFIG_NET_9P_RDMA) += 9pnet_rdma.o | ||
3 | 4 | ||
4 | 9pnet-objs := \ | 5 | 9pnet-objs := \ |
5 | mod.o \ | 6 | mod.o \ |
6 | client.o \ | 7 | client.o \ |
7 | conv.o \ | ||
8 | error.o \ | 8 | error.o \ |
9 | fcprint.o \ | ||
10 | util.o \ | 9 | util.o \ |
10 | protocol.o \ | ||
11 | trans_fd.o \ | 11 | trans_fd.o \ |
12 | 12 | ||
13 | 9pnet_virtio-objs := \ | 13 | 9pnet_virtio-objs := \ |
14 | trans_virtio.o \ | 14 | trans_virtio.o \ |
15 | |||
16 | 9pnet_rdma-objs := \ | ||
17 | trans_rdma.o \ | ||