summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorSandeep Jain <sandeepjain.linux@gmail.com>2016-12-05 08:36:37 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-12-06 10:41:03 +0100
commit0db184bc2590a75f4b557897f085f66c79e1d787 (patch)
treedd6d987d8df25a08f9fbd30046ca28156e128fc9 /drivers/staging
parent8efea9e9b7714b09cc88947b7d5bff3ab85eeb06 (diff)
downloadlinux-stable-0db184bc2590a75f4b557897f085f66c79e1d787.tar.gz
linux-stable-0db184bc2590a75f4b557897f085f66c79e1d787.tar.bz2
linux-stable-0db184bc2590a75f4b557897f085f66c79e1d787.zip
staging: lustre: Fix function declaration/definition mismatch
Fixes following Sparse errors. lprocfs_status.c:1568:5: error: symbol 'lprocfs_wr_root_squash' redeclared with different type... lprocfs_status.c:1632:5: error: symbol 'lprocfs_wr_nosquash_nids' redeclared with different type... Signed-off-by: Sandeep Jain <sandeepjain.linux@gmail.com> Acked-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/lustre/lustre/include/lprocfs_status.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/lustre/lustre/include/lprocfs_status.h b/drivers/staging/lustre/lustre/include/lprocfs_status.h
index d0a32d24e011..adef2d25c849 100644
--- a/drivers/staging/lustre/lustre/include/lprocfs_status.h
+++ b/drivers/staging/lustre/lustre/include/lprocfs_status.h
@@ -703,9 +703,9 @@ static struct lustre_attr lustre_attr_##name = __ATTR(name, mode, show, store)
extern const struct sysfs_ops lustre_sysfs_ops;
struct root_squash_info;
-int lprocfs_wr_root_squash(const char *buffer, unsigned long count,
+int lprocfs_wr_root_squash(const char __user *buffer, unsigned long count,
struct root_squash_info *squash, char *name);
-int lprocfs_wr_nosquash_nids(const char *buffer, unsigned long count,
+int lprocfs_wr_nosquash_nids(const char __user *buffer, unsigned long count,
struct root_squash_info *squash, char *name);
/* all quota proc functions */