Skip to content

Commit

Permalink
Merge tag 'ipe-pr-20250324' of git://git.kernel.org/pub/scm/linux/ker…
Browse files Browse the repository at this point in the history
…nel/git/wufan/ipe

Pull ipe update from Fan Wu:
 "This contains just one commit from Randy Dunlap, which fixes
  kernel-doc warnings in the IPE subsystem"

* tag 'ipe-pr-20250324' of git://git.kernel.org/pub/scm/linux/kernel/git/wufan/ipe:
  ipe: policy_fs: fix kernel-doc warnings
  • Loading branch information
Linus Torvalds committed Mar 28, 2025
2 parents 112e43e + 6df401a commit f174ac5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions security/ipe/policy_fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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[] = {
Expand Down

0 comments on commit f174ac5

Please sign in to comment.