aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/key.h
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2020-11-27 11:15:43 -0800
committerDavid Howells <dhowells@redhat.com>2021-01-21 16:16:10 +0000
commit464e96aeb16ab4e071d353f69ebbddfa08c8d731 (patch)
treef6ba40506cfe6bbe96601bffb95844eae531a97f /include/linux/key.h
parentcrypto: pkcs7: Use match_string() helper to simplify the code (diff)
downloadlinux-dev-464e96aeb16ab4e071d353f69ebbddfa08c8d731.tar.xz
linux-dev-464e96aeb16ab4e071d353f69ebbddfa08c8d731.zip
keys: remove trailing semicolon in macro definition
The macro use will already have a semicolon. Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Jarkko Sakkinen <jarkko@kernel.org> Reviewed-by: Ben Boeckel <mathstuf@gmail.com>
Diffstat (limited to '')
-rw-r--r--include/linux/key.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/key.h b/include/linux/key.h
index 0f2e24f13c2b..1b0837c975b9 100644
--- a/include/linux/key.h
+++ b/include/linux/key.h
@@ -360,7 +360,7 @@ static inline struct key *request_key(struct key_type *type,
* completion of keys undergoing construction with a non-interruptible wait.
*/
#define request_key_net(type, description, net, callout_info) \
- request_key_tag(type, description, net->key_domain, callout_info);
+ request_key_tag(type, description, net->key_domain, callout_info)
/**
* request_key_net_rcu - Request a key for a net namespace under RCU conditions
@@ -372,7 +372,7 @@ static inline struct key *request_key(struct key_type *type,
* network namespace are used.
*/
#define request_key_net_rcu(type, description, net) \
- request_key_rcu(type, description, net->key_domain);
+ request_key_rcu(type, description, net->key_domain)
#endif /* CONFIG_NET */
extern int wait_for_key_construction(struct key *key, bool intr);