]> Pileus Git - ~andy/linux/commit
bcache: Fix incompatible pointer type warning
authorEmil Goode <emilgoode@gmail.com>
Thu, 9 May 2013 20:39:26 +0000 (22:39 +0200)
committerKent Overstreet <koverstreet@google.com>
Wed, 15 May 2013 07:42:50 +0000 (00:42 -0700)
commit867e1162068eb5632c829d453fd65d6089564f55
tree6bb2cd61514923ac924a4e864e6e09c79e19cf4b
parentf50efd2fdbd9b35b11f5778ed85beb764184bda9
bcache: Fix incompatible pointer type warning

The function pointer release in struct block_device_operations
should point to functions declared as void.

Sparse warnings:

drivers/md/bcache/super.c:656:27: warning:
incorrect type in initializer (different base types)
drivers/md/bcache/super.c:656:27:
expected void ( *release )( ... )
drivers/md/bcache/super.c:656:27:
got int ( static [toplevel] *<noident> )( ... )

drivers/md/bcache/super.c:656:2: warning:
initialization from incompatible pointer type [enabled by default]

drivers/md/bcache/super.c:656:2: warning:
(near initialization for ‘bcache_ops.release’) [enabled by default]

Signed-off-by: Emil Goode <emilgoode@gmail.com>
Signed-off-by: Kent Overstreet <koverstreet@google.com>
drivers/md/bcache/super.c