Commit cf137d5c authored by Simon Horman's avatar Simon Horman Committed by Greg Kroah-Hartman

Staging: rtl8192su, rtl8192u: use min_t() in store_debug_level()

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: default avatarSimon Horman <horms@verge.net.au>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 27b93f80
...@@ -262,7 +262,7 @@ static int store_debug_level(struct file *file, const char *buffer, ...@@ -262,7 +262,7 @@ static int store_debug_level(struct file *file, const char *buffer,
unsigned long count, void *data) unsigned long count, void *data)
{ {
char buf[] = "0x00000000"; 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; char *p = (char *)buf;
unsigned long val; unsigned long val;
......
...@@ -260,7 +260,7 @@ static int store_debug_level(struct file *file, const char *buffer, ...@@ -260,7 +260,7 @@ static int store_debug_level(struct file *file, const char *buffer,
unsigned long count, void *data) unsigned long count, void *data)
{ {
char buf[] = "0x00000000"; 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; char *p = (char *)buf;
unsigned long val; unsigned long val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment