summaryrefslogtreecommitdiff
path: root/rust/kernel/pci/io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/kernel/pci/io.rs')
-rw-r--r--rust/kernel/pci/io.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/rust/kernel/pci/io.rs b/rust/kernel/pci/io.rs
index 65151a0a1a41..3684276b326b 100644
--- a/rust/kernel/pci/io.rs
+++ b/rust/kernel/pci/io.rs
@@ -18,7 +18,7 @@ use kernel::prelude::*;
/// # Invariants
///
/// `Bar` always holds an `IoRaw` inststance that holds a valid pointer to the start of the I/O
-/// memory mapped PCI bar and its size.
+/// memory mapped PCI BAR and its size.
pub struct Bar<const SIZE: usize = 0> {
pdev: ARef<Device>,
io: IoRaw<SIZE>,
@@ -78,7 +78,7 @@ impl<const SIZE: usize> Bar<SIZE> {
/// # Safety
///
- /// `ioptr` must be a valid pointer to the memory mapped PCI bar number `num`.
+ /// `ioptr` must be a valid pointer to the memory mapped PCI BAR number `num`.
unsafe fn do_release(pdev: &Device, ioptr: usize, num: i32) {
// SAFETY:
// `pdev` is valid by the invariants of `Device`.
@@ -120,7 +120,7 @@ impl<const SIZE: usize> Deref for Bar<SIZE> {
}
impl Device<device::Bound> {
- /// Mapps an entire PCI-BAR after performing a region-request on it. I/O operation bound checks
+ /// Maps an entire PCI BAR after performing a region-request on it. I/O operation bound checks
/// can be performed on compile time for offsets (plus the requested type size) < SIZE.
pub fn iomap_region_sized<'a, const SIZE: usize>(
&'a self,
@@ -130,7 +130,7 @@ impl Device<device::Bound> {
Devres::new(self.as_ref(), Bar::<SIZE>::new(self, bar, name))
}
- /// Mapps an entire PCI-BAR after performing a region-request on it.
+ /// Maps an entire PCI BAR after performing a region-request on it.
pub fn iomap_region<'a>(
&'a self,
bar: u32,