isa_pci.c (c37faf267cadd3e35df46737d4906eae34c4d439) isa_pci.c (38d8c9940bac138b83c5aa0066f0e2623d3a3512)
1/*-
2 * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier
3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000 BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 29 unchanged lines hidden (view full) ---

38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <machine/bus.h>
41#include <machine/resource.h>
42#include <sys/bus.h>
43#include <sys/rman.h>
44
45#include <isa/isavar.h>
1/*-
2 * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier
3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000 BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 29 unchanged lines hidden (view full) ---

38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <machine/bus.h>
41#include <machine/resource.h>
42#include <sys/bus.h>
43#include <sys/rman.h>
44
45#include <isa/isavar.h>
46#include <pci/pcivar.h>
47#include <pci/pcireg.h>
46#include <dev/pci/pcivar.h>
47#include <dev/pci/pcireg.h>
48
49#define ELCR_IOADDR 0x4d0 /* Interrupt Edge/Level Control Registers */
50#define ELCR_IOLEN 2
51
52struct isab_softc {
53 struct resource *elcr_res;
54 u_char saved_elcr[ELCR_IOLEN];
55};

--- 179 unchanged lines hidden ---
48
49#define ELCR_IOADDR 0x4d0 /* Interrupt Edge/Level Control Registers */
50#define ELCR_IOLEN 2
51
52struct isab_softc {
53 struct resource *elcr_res;
54 u_char saved_elcr[ELCR_IOLEN];
55};

--- 179 unchanged lines hidden ---