summaryrefslogtreecommitdiffstats
path: root/sys/dev/eisa
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-04-19 06:57:33 +0000
committerpeter <peter@FreeBSD.org>1999-04-19 06:57:33 +0000
commit57dc7b24eb7ff0d903cebf798b73e14fcc045320 (patch)
tree242295119ecb466cfcf7b26517df0487c2cbf9e0 /sys/dev/eisa
parent314f2274cf3acd1708d482d22aadf269c3d0f026 (diff)
downloadFreeBSD-src-57dc7b24eb7ff0d903cebf798b73e14fcc045320.zip
FreeBSD-src-57dc7b24eb7ff0d903cebf798b73e14fcc045320.tar.gz
Set the bus description for EISA, like it is for ISA.
Diffstat (limited to 'sys/dev/eisa')
-rw-r--r--sys/dev/eisa/eisaconf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c
index d7781d9..5585d63 100644
--- a/sys/dev/eisa/eisaconf.c
+++ b/sys/dev/eisa/eisaconf.c
@@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: eisaconf.c,v 1.37 1999/01/14 06:22:03 jdp Exp $
+ * $Id: eisaconf.c,v 1.38 1999/04/18 15:50:33 peter Exp $
*/
#include "opt_eisa.h"
@@ -180,6 +180,8 @@ eisa_probe(device_t dev)
int eisaBase = 0xc80;
eisa_id_t eisa_id;
+ device_set_desc(dev, "EISA bus");
+
for (slot = 0; slot < num_eisa_slots; eisaBase+=0x1000, slot++) {
int id_size = sizeof(eisa_id);
eisa_id = 0;
@@ -816,4 +818,3 @@ static driver_t eisa_driver = {
};
DRIVER_MODULE(eisa, isab, eisa_driver, eisa_devclass, 0, 0);
-
OpenPOWER on IntegriCloud