diff options
author | ian <ian@FreeBSD.org> | 2014-08-21 21:36:06 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2014-08-21 21:36:06 +0000 |
commit | 159b9303c732442dff25912991d3ace0fcdd065a (patch) | |
tree | eb92535e2650dac18ae69cab79bc8f2d16a159bf /sys/modules/aic7xxx | |
parent | 77ec212e10e3c8792bfe50834aaf7b5e914c6228 (diff) | |
download | FreeBSD-src-159b9303c732442dff25912991d3ace0fcdd065a.zip FreeBSD-src-159b9303c732442dff25912991d3ace0fcdd065a.tar.gz |
This module requires pci_if.h, add it to the SRCS list.
We haven't noticed that it was missing because eisa has been disabled for
a while in -current, but it became apparent when some parallel-build stuff
was MFC'd to 10-stable and this module failed to build there.
Diffstat (limited to 'sys/modules/aic7xxx')
-rw-r--r-- | sys/modules/aic7xxx/ahc/ahc_eisa/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile b/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile index 992c118..4c8253f 100644 --- a/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile +++ b/sys/modules/aic7xxx/ahc/ahc_eisa/Makefile @@ -5,7 +5,7 @@ KMOD= ahc_eisa SRCS= ahc_eisa.c -SRCS+= device_if.h bus_if.h eisa_if.h +SRCS+= device_if.h bus_if.h eisa_if.h pci_if.h SRCS+= opt_scsi.h opt_cam.h opt_aic7xxx.h CFLAGS+= -I${.CURDIR}/../../../../dev/aic7xxx -I.. |