]> Git Repo - linux.git/commitdiff
iosys-map: Fix typo in documentation
authorLucas De Marchi <[email protected]>
Fri, 10 Jun 2022 23:21:30 +0000 (16:21 -0700)
committerLucas De Marchi <[email protected]>
Thu, 16 Jun 2022 23:44:34 +0000 (16:44 -0700)
It's one argument, vaddr_iomem, not 2 (vaddr and _iomem).

Signed-off-by: Lucas De Marchi <[email protected]>
Reviewed-by: Christian König <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
include/linux/iosys-map.h

index e69a002d5aa4a085a41db42af4238051ce744f6b..4b8406ee8bc45e557ac88bc91928898853389461 100644 (file)
@@ -23,7 +23,7 @@
  *     memcpy(vaddr, src, len);
  *
  *     void *vaddr_iomem = ...; // pointer to I/O memory
- *     memcpy_toio(vaddr_iomem, src, len);
+ *     memcpy_toio(vaddr_iomem, src, len);
  *
  * The user of such pointer may not have information about the mapping of that
  * region or may want to have a single code path to handle operations on that
This page took 0.069495 seconds and 4 git commands to generate.