diff options
author | 2024-03-18 22:22:32 +0100 | |
---|---|---|
committer | 2024-05-28 16:59:53 +0200 | |
commit | 99b8520c00711556d62a9261eec9acfac94ecc9b (patch) | |
tree | a52231a067d67d0b1c1289ded5a7a83e87550a12 | |
parent | Linux 6.10-rc1 (diff) | |
download | wireguard-linux-99b8520c00711556d62a9261eec9acfac94ecc9b.tar.xz wireguard-linux-99b8520c00711556d62a9261eec9acfac94ecc9b.zip |
gfs2: Remove unnecessary function prototype
Function __gfs2_glock_dq() gets defined before it is used, so there is
no need for a separate function declaration.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
-rw-r--r-- | fs/gfs2/glock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 4ea6c8bfb4e6..873d76670238 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c @@ -61,7 +61,6 @@ struct gfs2_glock_iter { typedef void (*glock_examiner) (struct gfs2_glock * gl); static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target); -static void __gfs2_glock_dq(struct gfs2_holder *gh); static void handle_callback(struct gfs2_glock *gl, unsigned int state, unsigned long delay, bool remote); |