diff options
author | Cong Wang <amwang@redhat.com> | 2013-06-24 07:46:54 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-25 19:47:02 -0400 |
commit | 762375766143aba42e74713f8364b4953c40a354 (patch) | |
tree | 128a6e26c63993440298af60b6c6b61b702b1e53 /Documentation/networking/netlink_mmap.txt | |
parent | 3e4f8b787370978733ca6cae452720a4f0c296b8 (diff) |
doc: fix some syntax errors in netlink mmap sample code
Cc: Patrick McHardy <kaber@trash.net>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <amwang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/networking/netlink_mmap.txt')
-rw-r--r-- | Documentation/networking/netlink_mmap.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/networking/netlink_mmap.txt b/Documentation/networking/netlink_mmap.txt index e6088baf109d..5cc600587778 100644 --- a/Documentation/networking/netlink_mmap.txt +++ b/Documentation/networking/netlink_mmap.txt | |||
@@ -274,9 +274,9 @@ This example assumes some ring parameters of the ring setup are available. | |||
274 | /* Get next frame header */ | 274 | /* Get next frame header */ |
275 | hdr = rx_ring + frame_offset; | 275 | hdr = rx_ring + frame_offset; |
276 | 276 | ||
277 | if (hdr->nm_status == NL_MMAP_STATUS_VALID) | 277 | if (hdr->nm_status == NL_MMAP_STATUS_VALID) { |
278 | /* Regular memory mapped frame */ | 278 | /* Regular memory mapped frame */ |
279 | nlh = (void *hdr) + NL_MMAP_HDRLEN; | 279 | nlh = (void *)hdr + NL_MMAP_HDRLEN; |
280 | len = hdr->nm_len; | 280 | len = hdr->nm_len; |
281 | 281 | ||
282 | /* Release empty message immediately. May happen | 282 | /* Release empty message immediately. May happen |