From: Tamir <carmeli.tamir@xxxxxxxxx> Fixed a checkpatch warning for usage of unsigned type. Submitted as different patch in the series since it's not related to the change, just wanted to fix checkpatch warnings from it. Signed-off-by: Carmeli Tamir <carmeli.tamir@xxxxxxxxx> --- fs/filesystems.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs/filesystems.c b/fs/filesystems.c index f12b98f2f079..561fd7787822 100644 --- a/fs/filesystems.c +++ b/fs/filesystems.c @@ -46,7 +46,8 @@ void put_filesystem(struct file_system_type *fs) module_put(fs->owner); } -static struct file_system_type *find_filesystem(const char *name, unsigned len) +static struct file_system_type *find_filesystem(const char *name, + unsigned int len) { struct file_system_type *p; -- 2.19.1