diff options
author | Robert Schwebel <r.schwebel@pengutronix.de> | 2019-11-22 08:43:05 +0100 |
---|---|---|
committer | Jakub Kicinski <jakub.kicinski@netronome.com> | 2019-11-23 11:00:19 -0800 |
commit | bf0b2511e8d7d2f08b784469a4c1d84557305d3c (patch) | |
tree | 4ee4889e600dabb74f97589cedde72ce23f82f55 /Documentation/networking | |
parent | f67b7c087404d6a7f2abf7657d4ba3a0b9fdfcfa (diff) |
docs: networking: nfc: fix code block syntax
Silence this warning:
Documentation/networking/nfc.rst:113: WARNING: Definition list ends without
a blank line; unexpected unindent.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Diffstat (limited to 'Documentation/networking')
-rw-r--r-- | Documentation/networking/nfc.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Documentation/networking/nfc.txt b/Documentation/networking/nfc.txt index af69b3a90eaa..9aab3a88c9b2 100644 --- a/Documentation/networking/nfc.txt +++ b/Documentation/networking/nfc.txt @@ -103,14 +103,14 @@ it's closed. LOW-LEVEL DATA EXCHANGE: The userspace must use PF_NFC sockets to perform any data communication with -targets. All NFC sockets use AF_NFC: - -struct sockaddr_nfc { - sa_family_t sa_family; - __u32 dev_idx; - __u32 target_idx; - __u32 nfc_protocol; -}; +targets. All NFC sockets use AF_NFC:: + + struct sockaddr_nfc { + sa_family_t sa_family; + __u32 dev_idx; + __u32 target_idx; + __u32 nfc_protocol; + }; To establish a connection with one target, the user must create an NFC_SOCKPROTO_RAW socket and call the 'connect' syscall with the sockaddr_nfc |