Skip to content

Commit ba684a3

Browse files
committed
firmware: arm_ffa: Fix the comment style
clang produces the following warning: drivers/firmware/arm_ffa/driver.c:123: warning: expecting prototype for FF(). Prototype was for FFA_PAGE_SIZE() instead This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst Fix the same by removing the kernel-doc style comment here. Link: https://lore.kernel.org/r/[email protected] Reported-by: kernel test robot <[email protected]> Signed-off-by: Sudeep Holla <[email protected]>
1 parent e362547 commit ba684a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/firmware/arm_ffa/driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
#define PACK_TARGET_INFO(s, r) \
121121
(FIELD_PREP(SENDER_ID_MASK, (s)) | FIELD_PREP(RECEIVER_ID_MASK, (r)))
122122

123-
/**
123+
/*
124124
* FF-A specification mentions explicitly about '4K pages'. This should
125125
* not be confused with the kernel PAGE_SIZE, which is the translation
126126
* granule kernel is configured and may be one among 4K, 16K and 64K.

0 commit comments

Comments
 (0)