diff options
author | Gaosheng Cui <cuigaosheng1@huawei.com> | 2023-06-25 09:13:40 +0800 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2023-07-10 01:05:41 -0700 |
commit | c98c8972feb3bdf2e197e63403305176217c78a7 (patch) | |
tree | 48781f338ca948f55680c5e2f747917c843ed624 /security/apparmor | |
parent | 26c9ecb34f5f5fa43c041a220de01d7cbea97dd0 (diff) |
apparmor: Fix kernel-doc warnings in apparmor/capability.c
Fix kernel-doc warnings:
security/apparmor/capability.c:45: warning: Function parameter
or member 'ab' not described in 'audit_cb'
security/apparmor/capability.c:45: warning: Function parameter
or member 'va' not described in 'audit_cb'
Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security/apparmor')
-rw-r--r-- | security/apparmor/capability.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/apparmor/capability.c b/security/apparmor/capability.c index 326a51838ef2..8ebf0fcb796c 100644 --- a/security/apparmor/capability.c +++ b/security/apparmor/capability.c @@ -38,8 +38,8 @@ static DEFINE_PER_CPU(struct audit_cache, audit_cache); /** * audit_cb - call back for capability components of audit struct - * @ab - audit buffer (NOT NULL) - * @va - audit struct to audit data from (NOT NULL) + * @ab: audit buffer (NOT NULL) + * @va: audit struct to audit data from (NOT NULL) */ static void audit_cb(struct audit_buffer *ab, void *va) { |