diff options
author | Eric Biggers <ebiggers@google.com> | 2019-01-03 18:26:00 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-01-04 16:13:45 -0500 |
commit | 81966d83492620bf42d94d580370c59ff8d02772 (patch) | |
tree | 515cdb5930cb15e832446533834bf343813af0cf /fs/proc/util.c | |
parent | 8da0b4f692c6d90b09c91f271517db746a22ff67 (diff) |
fs/proc/util.c: include fs/proc/internal.h for name_to_int()
name_to_int() is defined in fs/proc/util.c and declared in
fs/proc/internal.h, but the declaration isn't included at the point of
the definition. Include the header to enforce that the definition
matches the declaration.
This addresses a gcc warning when -Wmissing-prototypes is enabled.
Link: http://lkml.kernel.org/r/20181115001833.49371-1-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Reviewed-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc/util.c')
-rw-r--r-- | fs/proc/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/proc/util.c b/fs/proc/util.c index b161cfa0f9fa..98f8adc17345 100644 --- a/fs/proc/util.c +++ b/fs/proc/util.c | |||
@@ -1,4 +1,5 @@ | |||
1 | #include <linux/dcache.h> | 1 | #include <linux/dcache.h> |
2 | #include "internal.h" | ||
2 | 3 | ||
3 | unsigned name_to_int(const struct qstr *qstr) | 4 | unsigned name_to_int(const struct qstr *qstr) |
4 | { | 5 | { |