0003-nfc-uapi-remove-stray-semicolon-in-struct-declaratio.patch (886B)
1 From f5847ab03a96b9b7b54fb9120f09f696a40332a1 Mon Sep 17 00:00:00 2001 2 From: Michael Forney <mforney@mforney.org> 3 Date: Fri, 18 Feb 2022 01:51:13 -0800 4 Subject: [PATCH] nfc: uapi: remove stray semicolon in struct declaration 5 6 Signed-off-by: Michael Forney <mforney@mforney.org> 7 --- 8 include/uapi/linux/nfc.h | 2 +- 9 1 file changed, 1 insertion(+), 1 deletion(-) 10 11 diff --git a/include/uapi/linux/nfc.h b/include/uapi/linux/nfc.h 12 index 2f5b4be25261..bfc3a91d5a22 100644 13 --- a/include/uapi/linux/nfc.h 14 +++ b/include/uapi/linux/nfc.h 15 @@ -280,7 +280,7 @@ struct sockaddr_nfc_llcp { 16 __u32 nfc_protocol; 17 __u8 dsap; /* Destination SAP, if known */ 18 __u8 ssap; /* Source SAP to be bound to */ 19 - char service_name[NFC_LLCP_MAX_SERVICE_NAME]; /* Service name URI */; 20 + char service_name[NFC_LLCP_MAX_SERVICE_NAME]; /* Service name URI */ 21 __kernel_size_t service_name_len; 22 }; 23 24 -- 25 2.49.0 26