[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190504094549.10021-3-carmeli.tamir@gmail.com>
Date: Sat, 4 May 2019 05:45:49 -0400
From: Carmeli Tamir <carmeli.tamir@...il.com>
To: carmeli.tamir@...il.com, viro@...iv.linux.org.uk,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH 2/2] Changed unsigned param type to unsigned int
From: Tamir <carmeli.tamir@...il.com>
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@...il.com>
---
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
Powered by blists - more mailing lists