From: Lucas De Marchi Date: Fri, 10 Jun 2022 23:21:30 +0000 (-0700) Subject: iosys-map: Fix typo in documentation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e4a8864f74e9e9e4a7eb93952a4cfa35c165c930;p=linux.git iosys-map: Fix typo in documentation It's one argument, vaddr_iomem, not 2 (vaddr and _iomem). Signed-off-by: Lucas De Marchi Reviewed-by: Christian König Link: https://patchwork.freedesktop.org/patch/msgid/20220610232130.2865479-3-lucas.demarchi@intel.com --- diff --git a/include/linux/iosys-map.h b/include/linux/iosys-map.h index e69a002d5aa4a..4b8406ee8bc45 100644 --- a/include/linux/iosys-map.h +++ b/include/linux/iosys-map.h @@ -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