diff options
author | imp <imp@FreeBSD.org> | 2001-08-10 05:42:08 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-08-10 05:42:08 +0000 |
commit | 57b70118c1cbca06e31b49b8890b4bcdee2ffc91 (patch) | |
tree | b25a7b9db3e42797a841940a955690a12dab520e | |
parent | f066389aac6b3d76b1d3c98198e346012a707b85 (diff) | |
download | FreeBSD-src-57b70118c1cbca06e31b49b8890b4bcdee2ffc91.zip FreeBSD-src-57b70118c1cbca06e31b49b8890b4bcdee2ffc91.tar.gz |
Rearrange the pcic_irq_type enum (and specifically tag the first one
as being 1) in anticipation of documentation.
-rw-r--r-- | sys/pccard/pcicvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pcicvar.h b/sys/pccard/pcicvar.h index 1fdbaf5..ff986c9 100644 --- a/sys/pccard/pcicvar.h +++ b/sys/pccard/pcicvar.h @@ -41,7 +41,7 @@ struct pcic_slot { void *argp; }; -enum pcic_irq_type { isa_parallel, pci_parallel, isa_serial }; +enum pcic_irq_type { isa_parallel = 1, isa_serial, pci_parallel, pci_serial }; struct pcic_softc { |