Staging: rtl8192su, rtl8192u: use min_t() in store_debug_level()
authorSimon Horman <horms@verge.net.au>
Wed, 23 Dec 2009 08:54:54 +0000 (19:54 +1100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 4 Mar 2010 00:42:38 +0000 (16:42 -0800)
sizeof() returns a size_t but the other types involved
are unsigned long, so using min() results in a warning.

As sizeof() is called on an 11 character buffer defined
immediately above unsigned long is obviously wide enough
for the result.

Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/rtl8192su/ieee80211/ieee80211_module.c
drivers/staging/rtl8192u/ieee80211/ieee80211_module.c

index e8c67d5..c024fa6 100644 (file)
@@ -262,7 +262,7 @@ static int store_debug_level(struct file *file, const char *buffer,
                             unsigned long count, void *data)
 {
        char buf[] = "0x00000000";
-       unsigned long len = min(sizeof(buf) - 1, count);
+       unsigned long len = min_t(unsigned long, sizeof(buf) - 1, count);
        char *p = (char *)buf;
        unsigned long val;
 
index 7a8690f..b752017 100644 (file)
@@ -260,7 +260,7 @@ static int store_debug_level(struct file *file, const char *buffer,
                             unsigned long count, void *data)
 {
        char buf[] = "0x00000000";
-       unsigned long len = min(sizeof(buf) - 1, count);
+       unsigned long len = min_t(unsigned long, sizeof(buf) - 1, count);
        char *p = (char *)buf;
        unsigned long val;