Fix a typo.

Submitted by:	Craig Rodrigues <rodrigc@attbi.com>
This commit is contained in:
Marc Fonvieille 2003-02-02 09:14:16 +00:00
parent 9b85a372ad
commit ace2db0de6
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=15885
2 changed files with 2 additions and 2 deletions
en_US.ISO8859-1/books
arch-handbook/pci
developers-handbook/pci

View file

@ -230,7 +230,7 @@ DRIVER_MODULE(mypci, pci, mypci_driver, mypci_devclass, 0, 0);</programlisting>
<para>To do anything particularly useful with a PCI device you
will need to obtain the <emphasis>Base Address
Registers</emphasis> (BARs) from the PCI Configuration space.
The PCI-specific details of obtaining the BAR is abstracted in
The PCI-specific details of obtaining the BAR are abstracted in
the <function>bus_alloc_resource()</function> function.</para>
<para>For example, a typical driver might have something similar

View file

@ -230,7 +230,7 @@ DRIVER_MODULE(mypci, pci, mypci_driver, mypci_devclass, 0, 0);</programlisting>
<para>To do anything particularly useful with a PCI device you
will need to obtain the <emphasis>Base Address
Registers</emphasis> (BARs) from the PCI Configuration space.
The PCI-specific details of obtaining the BAR is abstracted in
The PCI-specific details of obtaining the BAR are abstracted in
the <function>bus_alloc_resource()</function> function.</para>
<para>For example, a typical driver might have something similar