Skip to content

Commit 90a2d40

Browse files
committed
fixup! drm/asahi: Add the Asahi driver for Apple AGX GPUs
Signed-off-by: Janne Grunau <j@jannau.net>
1 parent 658743a commit 90a2d40

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/gpu/drm/asahi/buffer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -746,12 +746,12 @@ impl slotalloc::SlotItem for BufferSlotInner::ver {
746746
type Data = BufferManagerInner::ver;
747747

748748
fn release(&mut self, data: &mut Self::Data, slot: u32) {
749-
mod_pr_debug!("EventManager: Released slot {}\n", slot);
749+
mod_pr_debug!("BufferManager: Released slot {}\n", slot);
750750
data.owners[slot as usize] = None;
751751
}
752752
}
753753

754-
/// Inner data for the event manager, to be protected by the SlotAllocator lock.
754+
/// Inner data for the buffer manager, to be protected by the SlotAllocator lock.
755755
#[versions(AGX)]
756756
pub(crate) struct BufferManagerInner {
757757
owners: KVec<Option<Buffer::ver>>,

0 commit comments

Comments
 (0)