View | Details | Raw Unified | Return to bug 169665
Collapse All | Expand All

(-)b/sys/modules/Makefile (+5 lines)
Lines 124-129 SUBDIR= \ Link Here
124
	hwpmc \
124
	hwpmc \
125
	${_i2c} \
125
	${_i2c} \
126
	${_ibcs2} \
126
	${_ibcs2} \
127
	${_ichsmb}
127
	${_ichwd} \
128
	${_ichwd} \
128
	${_ida} \
129
	${_ida} \
129
	${_ie} \
130
	${_ie} \
Lines 295-300 SUBDIR= \ Link Here
295
	siis \
296
	siis \
296
	sis \
297
	sis \
297
	sk \
298
	sk \
299
	${smb} \
298
	${_smbfs} \
300
	${_smbfs} \
299
	${_sn} \
301
	${_sn} \
300
	${_snc} \
302
	${_snc} \
Lines 566-571 _hptiop= hptiop Link Here
566
_hptmv=		hptmv
568
_hptmv=		hptmv
567
_hptrr=		hptrr
569
_hptrr=		hptrr
568
.endif
570
.endif
571
_ichsmb=	ichsmb
569
_ichwd=		ichwd
572
_ichwd=		ichwd
570
_ida=		ida
573
_ida=		ida
571
_iir=		iir
574
_iir=		iir
Lines 660-665 _hptmv= hptmv Link Here
660
_hptrr=		hptrr
663
_hptrr=		hptrr
661
.endif
664
.endif
662
_i2c=		i2c
665
_i2c=		i2c
666
_ichsmb=	ichsmb
663
_ichwd=		ichwd
667
_ichwd=		ichwd
664
_ida=		ida
668
_ida=		ida
665
_if_ndis=	if_ndis
669
_if_ndis=	if_ndis
Lines 714-719 _s3= s3 Link Here
714
_safe=		safe
718
_safe=		safe
715
_scsi_low=	scsi_low
719
_scsi_low=	scsi_low
716
_sfxge=		sfxge
720
_sfxge=		sfxge
721
_smb=		smb
717
_smbfs=		smbfs
722
_smbfs=		smbfs
718
_sound=		sound
723
_sound=		sound
719
_speaker=	speaker
724
_speaker=	speaker
(-)b/sys/modules/ichsmb/Makefile (+14 lines)
Added Link Here
1
# $FreeBSD$
2
3
.PATH: ${.CURDIR}/../../dev/ichsmb
4
5
KMOD=	ichsmb
6
SRCS=	ichsmb.c
7
SRCS+=	ichsmb_pci.c
8
SRCS+=	bus_if.h
9
SRCS+=	device_if.h
10
SRCS+=	pci_if.h
11
SRCS+=	smbus_if.h
12
13
.include <bsd.kmod.mk>
14
(-)b/sys/modules/smb/Makefile (+6 lines)
Added Link Here
1
# $FreeBSD$
2
3
SUBDIR=		smb \
4
		smbus
5
6
.include <bsd.subdir.mk>
(-)b/sys/modules/smb/smb/Makefile (+11 lines)
Added Link Here
1
# $FreeBSD$
2
3
.PATH: ${.CURDIR}/../../../dev/smbus
4
5
KMOD=	smb
6
SRCS=	smb.c
7
SRCS+=	bus_if.h
8
SRCS+=	device_if.h
9
SRCS+=	smbus_if.h
10
11
.include <bsd.kmod.mk>
(-)b/sys/modules/smb/smbus/Makefile (-1 / +13 lines)
Added Link Here
0
- 
1
# $FreeBSD$
2
3
.PATH: ${.CURDIR}/../../../dev/smbus
4
5
KMOD=	smbus
6
SRCS=	smbus.c
7
SRCS+=	smbus_if.c
8
SRCS+=	smbconf.c
9
SRCS+=	bus_if.h
10
SRCS+=	device_if.h
11
SRCS+=	smbus_if.h
12
13
.include <bsd.kmod.mk>

Return to bug 169665