From: Konrad Rzeszutek Wilk Date: Fri, 15 Feb 2013 17:53:41 +0000 (-0500) Subject: zcache: Fix compile warnings due to usage of debugfs_create_size_t X-Git-Tag: v3.9-rc1~127^2~44 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=291131cba157d411d80bf86a105885c3dc48a817;p=pandora-kernel.git zcache: Fix compile warnings due to usage of debugfs_create_size_t When we compile we get tons of: include/linux/debugfs.h:80:16: note: expected ‘size_t *’ but argument is of type ‘long int *’ drivers/staging/zcache/zcache-main.c:279:2: warning: passing argument 4 of ‘debugfs_create_size_t’ from incompatible pointer type [enabled by d efault] which is b/c we end up using 'unsigned' or 'unsigned long' instead of 'ssize_t'. So lets fix this up and use the proper type. [v2: Rebased directly on staging] Acked-by: Dan Magenheimer Signed-off-by: Konrad Rzeszutek Wilk Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed