From 744e43465fa9aa21a470768daad52e949ad030ff Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 8 Nov 2005 17:03:09 +0000 Subject: [PATCH] Fix standalone module build for viapm. Note that by default it doesn't include the ISA bus support even though it probably should. --- sys/modules/i2c/controllers/viapm/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/modules/i2c/controllers/viapm/Makefile b/sys/modules/i2c/controllers/viapm/Makefile index 4c3e3a6981f..03c07389399 100644 --- a/sys/modules/i2c/controllers/viapm/Makefile +++ b/sys/modules/i2c/controllers/viapm/Makefile @@ -2,8 +2,8 @@ .PATH: ${.CURDIR}/../../../../pci KMOD = viapm -SRCS = device_if.h bus_if.h iicbb_if.h pci_if.h smbus_if.h \ - viapm.c +SRCS = device_if.h bus_if.h iicbb_if.h isa_if.h pci_if.h smbus_if.h \ + opt_isa.h viapm.c CFLAGS += -DVIAPM_BASE_ADDR=0x6000 .include