diff options
author | jhibbits <jhibbits@FreeBSD.org> | 2012-02-26 13:27:22 +0000 |
---|---|---|
committer | jhibbits <jhibbits@FreeBSD.org> | 2012-02-26 13:27:22 +0000 |
commit | 9b7d718a858ef9643ac3de3bcd4f099365aa0791 (patch) | |
tree | cac28cc3ccf4a23b40383350f7f020ebec572d5f /sys/modules/scc | |
parent | 342a7804fbe141f16590ee4590a6bc175e6502ed (diff) | |
download | FreeBSD-src-9b7d718a858ef9643ac3de3bcd4f099365aa0791.zip FreeBSD-src-9b7d718a858ef9643ac3de3bcd4f099365aa0791.tar.gz |
Fix the scc(4) module build. Without the file it's missing a required symbol.
Approved by: nwhitehorn (mentor)
MFC after: 3 days
Diffstat (limited to 'sys/modules/scc')
-rw-r--r-- | sys/modules/scc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/scc/Makefile b/sys/modules/scc/Makefile index 8a40e0b..062de31 100644 --- a/sys/modules/scc/Makefile +++ b/sys/modules/scc/Makefile @@ -6,7 +6,7 @@ scc_bfe= scc_bfe_ebus.c scc_bfe_sbus.c .endif .if ${MACHINE_CPUARCH} == "powerpc" -scc_bfe= scc_bfe_macio.c scc_bfe_quicc.c +scc_bfe= scc_bfe_macio.c scc_bfe_quicc.c scc_dev_quicc.c .endif KMOD= scc |