aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/ipath/Makefile
diff options
context:
space:
mode:
authorBryan O'Sullivan <bos@pathscale.com>2006-08-25 14:24:31 -0400
committerRoland Dreier <rolandd@cisco.com>2006-09-22 18:22:30 -0400
commitb1c1b6a30eac88665a35a207cc5e6233090b9d65 (patch)
tree7f2351404d45a48688e3cc2be355d2fb016e4b18 /drivers/infiniband/hw/ipath/Makefile
parent367fe711c5dc85dbc3265cf01e34d4d6fbd55f06 (diff)
IB/ipath: merge ipath_core and ib_ipath drivers
There is little point in keeping the two drivers separate, so we are merging them. Signed-off-by: Bryan O'Sullivan <bryan.osullivan@qlogic.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/ipath/Makefile')
-rw-r--r--drivers/infiniband/hw/ipath/Makefile27
1 files changed, 12 insertions, 15 deletions
diff --git a/drivers/infiniband/hw/ipath/Makefile b/drivers/infiniband/hw/ipath/Makefile
index 075e313941f..690dc713e63 100644
--- a/drivers/infiniband/hw/ipath/Makefile
+++ b/drivers/infiniband/hw/ipath/Makefile
@@ -1,10 +1,10 @@
1EXTRA_CFLAGS += -DIPATH_IDSTR='"QLogic kernel.org driver"' \ 1EXTRA_CFLAGS += -DIPATH_IDSTR='"QLogic kernel.org driver"' \
2 -DIPATH_KERN_TYPE=0 2 -DIPATH_KERN_TYPE=0
3 3
4obj-$(CONFIG_IPATH_CORE) += ipath_core.o
5obj-$(CONFIG_INFINIBAND_IPATH) += ib_ipath.o 4obj-$(CONFIG_INFINIBAND_IPATH) += ib_ipath.o
6 5
7ipath_core-y := \ 6ib_ipath-y := \
7 ipath_cq.o \
8 ipath_diag.o \ 8 ipath_diag.o \
9 ipath_driver.o \ 9 ipath_driver.o \
10 ipath_eeprom.o \ 10 ipath_eeprom.o \
@@ -13,26 +13,23 @@ ipath_core-y := \
13 ipath_ht400.o \ 13 ipath_ht400.o \
14 ipath_init_chip.o \ 14 ipath_init_chip.o \
15 ipath_intr.o \ 15 ipath_intr.o \
16 ipath_layer.o \
17 ipath_pe800.o \
18 ipath_stats.o \
19 ipath_sysfs.o \
20 ipath_user_pages.o
21
22ipath_core-$(CONFIG_X86_64) += ipath_wc_x86_64.o
23ipath_core-$(CONFIG_PPC64) += ipath_wc_ppc64.o
24
25ib_ipath-y := \
26 ipath_cq.o \
27 ipath_keys.o \ 16 ipath_keys.o \
17 ipath_layer.o \
28 ipath_mad.o \ 18 ipath_mad.o \
29 ipath_mmap.o \ 19 ipath_mmap.o \
30 ipath_mr.o \ 20 ipath_mr.o \
21 ipath_pe800.o \
31 ipath_qp.o \ 22 ipath_qp.o \
32 ipath_rc.o \ 23 ipath_rc.o \
33 ipath_ruc.o \ 24 ipath_ruc.o \
34 ipath_srq.o \ 25 ipath_srq.o \
26 ipath_stats.o \
27 ipath_sysfs.o \
35 ipath_uc.o \ 28 ipath_uc.o \
36 ipath_ud.o \ 29 ipath_ud.o \
37 ipath_verbs.o \ 30 ipath_user_pages.o \
38 ipath_verbs_mcast.o 31 ipath_verbs_mcast.o \
32 ipath_verbs.o
33
34ib_ipath-$(CONFIG_X86_64) += ipath_wc_x86_64.o
35ib_ipath-$(CONFIG_PPC64) += ipath_wc_ppc64.o