2008-02-03 23:05:58

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH 1/8] kernel-doc: fix audit warnings

From: Randy Dunlap <[email protected]>

Fix kernel-doc warnings in audit.c.

Warning(linux-2.6.24-git12//kernel/audit.c:1268): No description found for parameter 'string'
Warning(linux-2.6.24-git12//kernel/audit.c:1268): No description found for parameter 'len'`

Signed-off-by: Randy Dunlap <[email protected]>
---
kernel/audit.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-2.6.24-git12.orig/kernel/audit.c
+++ linux-2.6.24-git12/kernel/audit.c
@@ -1261,8 +1261,8 @@ static void audit_log_n_string(struct au

/**
* audit_string_contains_control - does a string need to be logged in hex
- * @string - string to be checked
- * @len - max length of the string to check
+ * @string: string to be checked
+ * @len: max length of the string to check
*/
int audit_string_contains_control(const char *string, size_t len)
{