diff options
author | Michele Curti <michele.curti@gmail.com> | 2014-10-09 18:30:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-09 22:26:04 -0400 |
commit | 61a04e5b306ab9d6a30f78e86f1f140d7c888304 (patch) | |
tree | 2e31444c2e31385f5f030d7ae51f9451af29a7c7 | |
parent | c185b07fc9f24d52a864376ed22a6d84384b0c53 (diff) |
include/linux/blkdev.h: use NULL instead of zero
Quite useless but it shuts up some warnings.
Signed-off-by: Michele Curti <michele.curti@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 518b46555b80..87be398166d3 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
@@ -1564,7 +1564,7 @@ static inline int blk_rq_map_integrity_sg(struct request_queue *q, | |||
1564 | } | 1564 | } |
1565 | static inline struct blk_integrity *bdev_get_integrity(struct block_device *b) | 1565 | static inline struct blk_integrity *bdev_get_integrity(struct block_device *b) |
1566 | { | 1566 | { |
1567 | return 0; | 1567 | return NULL; |
1568 | } | 1568 | } |
1569 | static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk) | 1569 | static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk) |
1570 | { | 1570 | { |