summaryrefslogtreecommitdiff
path: root/drivers/gpu/nova-core/dma.rs
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nova-core/dma.rs')
-rw-r--r--drivers/gpu/nova-core/dma.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nova-core/dma.rs b/drivers/gpu/nova-core/dma.rs
index 1f1f8c378d8e..94f44bcfd748 100644
--- a/drivers/gpu/nova-core/dma.rs
+++ b/drivers/gpu/nova-core/dma.rs
@@ -26,7 +26,7 @@ impl DmaObject {
pub(crate) fn from_data(dev: &device::Device<device::Bound>, data: &[u8]) -> Result<Self> {
Self::new(dev, data.len()).map(|mut dma_obj| {
- // TODO: replace with `CoherentAllocation::write()` once available.
+ // TODO[COHA]: replace with `CoherentAllocation::write()` once available.
// SAFETY:
// - `dma_obj`'s size is at least `data.len()`.
// - We have just created this object and there is no other user at this stage.