diff mbox series

fs/proc/util.c: include fs/proc/internal.h for name_to_int()

Message ID 20181115001833.49371-1-ebiggers@kernel.org (mailing list archive)
State New, archived
Headers show
Series fs/proc/util.c: include fs/proc/internal.h for name_to_int() | expand

Commit Message

Eric Biggers Nov. 15, 2018, 12:18 a.m. UTC
From: Eric Biggers <ebiggers@google.com>

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.

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 fs/proc/util.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Alexey Dobriyan Nov. 15, 2018, 2:43 p.m. UTC | #1
On Wed, Nov 14, 2018 at 04:18:33PM -0800, Eric Biggers wrote:
> --- a/fs/proc/util.c
> +++ b/fs/proc/util.c
> @@ -1,4 +1,5 @@
>  #include <linux/dcache.h>
> +#include "internal.h"

Reviewed-by: Alexey Dobriyan <adobriyan@gmail.com>
diff mbox series

Patch

diff --git a/fs/proc/util.c b/fs/proc/util.c
index b161cfa0f9fa1..98f8adc173453 100644
--- a/fs/proc/util.c
+++ b/fs/proc/util.c
@@ -1,4 +1,5 @@ 
 #include <linux/dcache.h>
+#include "internal.h"
 
 unsigned name_to_int(const struct qstr *qstr)
 {