Skip to content

Commit 6cb9174

Browse files
akpm00torvalds
authored andcommitted
include/linux/sysctl.h: fix register_sysctl_mount_point() return type
The CONFIG_SYSCTL=n stub returns the wrong type. Fixes: ee9efac ("sysctl: add helper to register a sysctl mount point") Reported-by: kernel test robot <[email protected]> Acked-by: Luis Chamberlain <[email protected]> Cc: Tong Zhang <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent f8c7e4e commit 6cb9174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/sysctl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ static inline struct ctl_table_header *register_sysctl_table(struct ctl_table *
265265
return NULL;
266266
}
267267

268-
static inline struct sysctl_header *register_sysctl_mount_point(const char *path)
268+
static inline struct ctl_table_header *register_sysctl_mount_point(const char *path)
269269
{
270270
return NULL;
271271
}

0 commit comments

Comments
 (0)