Skip to content
Snippets Groups Projects
Commit 40a5e3c0 authored by Stephen Rothwell's avatar Stephen Rothwell
Browse files
parents 2144de9a aefadf03
No related merge requests found
......@@ -16,7 +16,11 @@
#define MAX_VERSION_SIZE ARRAY_SIZE("65535.65535.65535")
/**
* ipefs_file - defines a file in securityfs.
* struct ipefs_file - defines a file in securityfs.
*
* @name: file name inside the policy subdirectory
* @access: file permissions
* @fops: &file_operations specific to this file
*/
struct ipefs_file {
const char *name;
......@@ -401,7 +405,7 @@ static const struct file_operations delete_fops = {
.write = delete_policy,
};
/**
/*
* policy_subdir - files under a policy subdirectory
*/
static const struct ipefs_file policy_subdir[] = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment