Gitweb: http://git.kernel.org/linus/f357e6ecbc4696d11539df3fd604c8da59c1e6d1 Commit: f357e6ecbc4696d11539df3fd604c8da59c1e6d1 Parent: 859ebd9748fb086a272bebe6cce4d8e6461dd7fc Author: Jeff Mahoney <jeffm@suse.com> AuthorDate: Tue Aug 4 10:26:21 2009 -0400 Committer: Greg Kroah-Hartman <gregkh@suse.de> CommitDate: Tue Sep 15 12:02:16 2009 -0700 Staging: rtl8192su: fixup size comparison warning sizeof(val) returns type unsigned long. count is already unsigned long, so just use that. This fixes a compile warning. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- .../staging/rtl8192su/ieee80211/ieee80211_module.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c b/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c index 510e71e..68dc8fa 100644 --- a/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c +++ b/drivers/staging/rtl8192su/ieee80211/ieee80211_module.c @@ -264,7 +264,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, (u32)count); + unsigned long len = min(sizeof(buf) - 1, count); char *p = (char *)buf; unsigned long val; -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
