diff options
author | imp <imp@FreeBSD.org> | 2008-08-14 20:02:34 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2008-08-14 20:02:34 +0000 |
commit | 6a728b4e53204fcbd8423d013a8beb811574b400 (patch) | |
tree | e84c1c79e9ff01bb6a99e12d1867afeed2865ac1 | |
parent | 463ec8e02d0db95b50ab7a1c71563cb72e824d7c (diff) | |
download | FreeBSD-src-6a728b4e53204fcbd8423d013a8beb811574b400.zip FreeBSD-src-6a728b4e53204fcbd8423d013a8beb811574b400.tar.gz |
Move the tl driver form sys/pci to sys/dev/tl.
-rw-r--r-- | sys/conf/files | 2 | ||||
-rw-r--r-- | sys/dev/tl/if_tl.c (renamed from sys/pci/if_tl.c) | 2 | ||||
-rw-r--r-- | sys/dev/tl/if_tlreg.h (renamed from sys/pci/if_tlreg.h) | 0 | ||||
-rw-r--r-- | sys/modules/tl/Makefile | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/sys/conf/files b/sys/conf/files index eeb2b5b..c662d37 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1224,6 +1224,7 @@ dev/syscons/warp/warp_saver.c optional warp_saver dev/tdfx/tdfx_linux.c optional tdfx_linux tdfx compat_linux dev/tdfx/tdfx_pci.c optional tdfx pci dev/ti/if_ti.c optional ti pci +dev/tl/if_tl.c optional tl pci dev/trm/trm.c optional trm dev/twa/tw_cl_init.c optional twa \ compile-with "${NORMAL_C} -I$S/dev/twa" @@ -2086,7 +2087,6 @@ pci/if_mn.c optional mn pci pci/if_pcn.c optional pcn pci pci/if_rl.c optional rl pci pci/if_ste.c optional ste pci -pci/if_tl.c optional tl pci pci/if_wb.c optional wb pci pci/intpm.c optional intpm pci pci/ncr.c optional ncr pci diff --git a/sys/pci/if_tl.c b/sys/dev/tl/if_tl.c index f2993e2..371feb2 100644 --- a/sys/pci/if_tl.c +++ b/sys/dev/tl/if_tl.c @@ -215,7 +215,7 @@ __FBSDID("$FreeBSD$"); */ #define TL_USEIOSPACE -#include <pci/if_tlreg.h> +#include <dev/tl/if_tlreg.h> MODULE_DEPEND(tl, pci, 1, 1, 1); MODULE_DEPEND(tl, ether, 1, 1, 1); diff --git a/sys/pci/if_tlreg.h b/sys/dev/tl/if_tlreg.h index f04b52b..f04b52b 100644 --- a/sys/pci/if_tlreg.h +++ b/sys/dev/tl/if_tlreg.h diff --git a/sys/modules/tl/Makefile b/sys/modules/tl/Makefile index ea5c808..60fbc27 100644 --- a/sys/modules/tl/Makefile +++ b/sys/modules/tl/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../pci +.PATH: ${.CURDIR}/../../dev/tl KMOD= if_tl SRCS= if_tl.c device_if.h bus_if.h pci_if.h |