summaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab2017-05-12 14:19:29 +0200
committerMauro Carvalho Chehab2017-05-16 13:44:13 +0200
commit771b00a84be46d10e3f74af2d86d226302c907c5 (patch)
tree48d0345895bb1522c584f4f4e8a09465aafaff23 /include/linux/skbuff.h
parentdocs-rst: convert networking book to ReST (diff)
downloadkernel-qcow2-linux-771b00a84be46d10e3f74af2d86d226302c907c5.tar.gz
kernel-qcow2-linux-771b00a84be46d10e3f74af2d86d226302c907c5.tar.xz
kernel-qcow2-linux-771b00a84be46d10e3f74af2d86d226302c907c5.zip
net: skbuff.h: properly escape a macro name on kernel-doc
The "%" escape code of kernel-doc only handle letters. It doesn't handle special chars. So, use the ``literal`` notation. That fixes this warning: ./include/linux/skbuff.h:2695: WARNING: Inline literal start-string without end-string. No functional changes. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index a098d95b3d84..25b1659c832a 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -2691,7 +2691,7 @@ bool skb_page_frag_refill(unsigned int sz, struct page_frag *pfrag, gfp_t prio);
* @offset: the offset within the fragment (starting at the
* fragment's own offset)
* @size: the number of bytes to map
- * @dir: the direction of the mapping (%PCI_DMA_*)
+ * @dir: the direction of the mapping (``PCI_DMA_*``)
*
* Maps the page associated with @frag to @device.
*/