diff options
author | msmith <msmith@FreeBSD.org> | 1999-11-02 19:29:20 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1999-11-02 19:29:20 +0000 |
commit | db4ab99c0c6562fb21940bb07ae9f38e9d08d35c (patch) | |
tree | abcbc412f835203e4fc06672208171ed704c8b79 | |
parent | 1da0b22e43b59e601260672044b16efde4ffae88 (diff) | |
download | FreeBSD-src-db4ab99c0c6562fb21940bb07ae9f38e9d08d35c.zip FreeBSD-src-db4ab99c0c6562fb21940bb07ae9f38e9d08d35c.tar.gz |
Cut out some extra dead code that I missed last time around. I think
this will fix the alpha kernel build now (MFS excluded).
-rw-r--r-- | sys/alpha/alpha/autoconf.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sys/alpha/alpha/autoconf.c b/sys/alpha/alpha/autoconf.c index 2f6fa13..b09f479 100644 --- a/sys/alpha/alpha/autoconf.c +++ b/sys/alpha/alpha/autoconf.c @@ -84,6 +84,8 @@ configure_finish() { } +#if 0 + static int atoi(const char *s) { @@ -135,8 +137,6 @@ bootdev_unit(void) return atoi(bootdev_field(5)); } -#if 0 - static int bootdev_bus(void) { @@ -169,18 +169,6 @@ bootdev_ctrl_dev_type(void) #endif -void -alpha_register_pci_scsi(int bus, int slot, struct cam_sim *sim) -{ - if (!strcmp(bootdev_protocol(), "SCSI")) { - int boot_slot = bootdev_slot(); - if (((bus == boot_slot / 1000 ) - || (bus == 1 && (boot_slot < 1000))) - && slot == boot_slot % 1000) - boot_sim = sim; - } -} - /* * Determine i/o configuration for a machine. */ |