diff mbox series

drivers: nfc: port100.c: Shift closing */ of comment

Message ID 20210503085713.72prlvwtgulxwyvv@kewl-virtual-machine (mailing list archive)
State Deferred
Delegated to: Netdev Maintainers
Headers show
Series drivers: nfc: port100.c: Shift closing */ of comment | expand

Checks

Context Check Description
netdev/cover_letter success Link
netdev/fixes_present success Link
netdev/patch_count success Link
netdev/tree_selection success Guessed tree name to be net-next
netdev/subject_prefix warning Target tree name not specified in the subject
netdev/cc_maintainers success CCed 2 of 2 maintainers
netdev/source_inline success Was 0 now: 0
netdev/verify_signedoff success Link
netdev/module_param success Was 0 now: 0
netdev/build_32bit success Errors and warnings before: 2 this patch: 2
netdev/kdoc success Errors and warnings before: 4 this patch: 4
netdev/verify_fixes success Link
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 9 lines checked
netdev/build_allmodconfig_warn success Errors and warnings before: 2 this patch: 2
netdev/header_inline success Link

Commit Message

Shubhankar Kuranagatti May 3, 2021, 8:57 a.m. UTC
The * has been added to the starting of new line of comment
The closing */ has been shifted to a new line
This is done to maintain code uniformity

Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@gmail.com>
---
 drivers/nfc/port100.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/nfc/port100.c b/drivers/nfc/port100.c
index 8e4d355dc3ae..d8fa8a7a360f 100644
--- a/drivers/nfc/port100.c
+++ b/drivers/nfc/port100.c
@@ -40,7 +40,8 @@ 
 #define PORT100_FRAME_MAX_PAYLOAD_LEN 1001
 
 #define PORT100_FRAME_ACK_SIZE 6 /* Preamble (1), SoPC (2), ACK Code (2),
-				    Postamble (1) */
+				  * Postamble (1)
+				  */
 static u8 ack_frame[PORT100_FRAME_ACK_SIZE] = {
 	0x00, 0x00, 0xff, 0x00, 0xff, 0x00
 };