Move the imc and imcsmb stuff out of general files.pci and into the
architecture-specific files.x86 Should unbreak the sgimips build.
This commit is contained in:
parent
c74908b431
commit
3e0cb5d705
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.x86,v 1.93 2018/02/11 09:39:37 maxv Exp $
|
||||
# $NetBSD: files.x86,v 1.94 2018/03/01 04:29:38 pgoyette Exp $
|
||||
|
||||
# options for MP configuration through the MP spec
|
||||
defflag opt_mpbios.h MPBIOS MPVERBOSE MPDEBUG MPBIOS_SCANPCI
|
||||
|
@ -161,3 +161,14 @@ file arch/x86/pci/pciide_machdep.c pciide_common
|
|||
|
||||
file arch/x86/pci/pci_bus_fixup.c pci_bus_fixup
|
||||
file arch/x86/pci/pci_addr_fixup.c pci_addr_fixup
|
||||
|
||||
# Intel Integrated Memory Controller and associated SMBus
|
||||
# (Experimental)
|
||||
|
||||
device imc {}: imcsmb
|
||||
attach imc at pci
|
||||
file dev/imcsmb/imc.c imc
|
||||
|
||||
device imcsmb: i2cbus
|
||||
attach imcsmb at imc
|
||||
file dev/imcsmb/imcsmb.c imcsmb
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.pci,v 1.393 2018/02/25 08:19:34 pgoyette Exp $
|
||||
# $NetBSD: files.pci,v 1.394 2018/03/01 04:29:37 pgoyette Exp $
|
||||
#
|
||||
# Config file and device description for machine-independent PCI code.
|
||||
# Included by ports that need it. Requires that the SCSI files be
|
||||
|
@ -1189,14 +1189,3 @@ include "external/bsd/drm2/pci/files.drmkms_pci"
|
|||
device ismt: i2cbus
|
||||
attach ismt at pci
|
||||
file dev/pci/ismt.c ismt
|
||||
|
||||
# Intel Integrated Memory Controller and associated SMBus
|
||||
# (Experimental)
|
||||
|
||||
device imc {}: imcsmb
|
||||
attach imc at pci
|
||||
file dev/imcsmb/imc.c imc
|
||||
|
||||
device imcsmb: i2cbus
|
||||
attach imcsmb at imc
|
||||
file dev/imcsmb/imcsmb.c imcsmb
|
||||
|
|
Loading…
Reference in New Issue