From 45d8d7918e0d3b472a0b529ec0d7cff4121a46b0 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Tue, 10 May 2016 05:05:23 +0000 Subject: [PATCH] [siba] migrate siba.c to siba_mips.c Turns out that ye olde siba.c is /just/ the siba mips code (used by the initial SENTRY5 port. However, I don't think it was ever finished enough to be useful, and I do have this nagging feeling that we'll eventually replace it with the bhnd code. But, since bhnd(4) introduced siba.c too, we ended up with a source file name clash, and that broke the SENTRY5 build. It /looks/ like this is the only place siba.c / device siba is used. --- sys/conf/files | 2 +- sys/dev/siba/{siba.c => siba_mips.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename sys/dev/siba/{siba.c => siba_mips.c} (100%) diff --git a/sys/conf/files b/sys/conf/files index 98ca4da7c3e..a903336c020 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -2440,10 +2440,10 @@ dev/si/si3_t225.c optional si dev/si/si_eisa.c optional si eisa dev/si/si_isa.c optional si isa dev/si/si_pci.c optional si pci -dev/siba/siba.c optional siba !bhnd !bhndbus dev/siba/siba_bwn.c optional siba_bwn pci dev/siba/siba_cc.c optional siba !bhnd !bhndbus dev/siba/siba_core.c optional siba | siba_bwn pci +dev/siba/siba_mips.c optional siba !bhnd !bhndbus dev/siba/siba_pcib.c optional siba pci !bhnd !bhndbus dev/siis/siis.c optional siis pci dev/sis/if_sis.c optional sis pci diff --git a/sys/dev/siba/siba.c b/sys/dev/siba/siba_mips.c similarity index 100% rename from sys/dev/siba/siba.c rename to sys/dev/siba/siba_mips.c