Merge tag 'regmap-fix-v5.11-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux/fpc-iii.git] / fs / ntfs / sysctl.h
blob96bb2299d2d5558e6e295b384ce7e97bbb8d0a63
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * sysctl.h - Defines for sysctl handling in NTFS Linux kernel driver. Part of
4 * the Linux-NTFS project. Adapted from the old NTFS driver,
5 * Copyright (C) 1997 Martin von Löwis, Régis Duchesne
7 * Copyright (c) 2002-2004 Anton Altaparmakov
8 */
10 #ifndef _LINUX_NTFS_SYSCTL_H
11 #define _LINUX_NTFS_SYSCTL_H
14 #if defined(DEBUG) && defined(CONFIG_SYSCTL)
16 extern int ntfs_sysctl(int add);
18 #else
20 /* Just return success. */
21 static inline int ntfs_sysctl(int add)
23 return 0;
26 #endif /* DEBUG && CONFIG_SYSCTL */
27 #endif /* _LINUX_NTFS_SYSCTL_H */