From: Cyril Roelandt Date: Thu, 16 May 2013 16:06:20 +0000 (+0200) Subject: staging: lustre: fix return type of lo_release. X-Git-Tag: omap-for-v3.11/fixes-for-merge-window~76^2~728 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1e2f53e73c44121a5e2c3a4c9a645d7def3a843;p=pandora-kernel.git staging: lustre: fix return type of lo_release. The return type of block_device_operations.release() changed to void in commit db2a144b. Found with the following Coccinelle patch: @has_release_func@ identifier i; identifier release_func; @@ struct block_device_operations i = { .release = release_func }; @depends on has_release_func@ identifier has_release_func.release_func; @@ - int + void release_func(...) { ... - return ...; } Signed-off-by: Cyril Roelandt Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed