1
0
Fork 0

[PATCH] include/linux/blkdev.h: "extern inline" -> "static inline"

"extern inline" doesn't make much sense.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
hifive-unleashed-5.1
Adrian Bunk 2005-09-10 00:27:17 -07:00 committed by Linus Torvalds
parent e2afe67453
commit 2befb9e36d
1 changed files with 1 additions and 1 deletions

View File

@ -728,7 +728,7 @@ static inline unsigned int blksize_bits(unsigned int size)
return bits;
}
extern inline unsigned int block_size(struct block_device *bdev)
static inline unsigned int block_size(struct block_device *bdev)
{
return bdev->bd_block_size;
}