diff options
author | John W. Linville <linville@tuxdriver.com> | 2005-09-29 17:42:42 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-09-29 17:42:42 -0400 |
commit | 6c654b5fdf093cd05f35f7c9c2a00182fa5636dc (patch) | |
tree | 7aa16a41d64b906c6e7e5248897f88027428d12a /lib/Makefile | |
parent | 0b9afede3d9c66fef06f1d5ef5ff15c4b97730fc (diff) |
[PATCH] swiotlb: move from arch/ia64/lib/ to lib/
The swiotlb implementation is shared by both IA-64 and EM64T. However,
the source itself lives under arch/ia64. This patch moves swiotlb.c
from arch/ia64/lib to lib/ and fixes-up the appropriate Makefile and
Kconfig files. No actual changes are made to swiotlb.c.
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 44a46750690a..8535f4d7d1c3 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -44,6 +44,8 @@ obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o | |||
44 | obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o | 44 | obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o |
45 | obj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o | 45 | obj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o |
46 | 46 | ||
47 | obj-$(CONFIG_SWIOTLB) += swiotlb.o | ||
48 | |||
47 | hostprogs-y := gen_crc32table | 49 | hostprogs-y := gen_crc32table |
48 | clean-files := crc32table.h | 50 | clean-files := crc32table.h |
49 | 51 | ||