Commit 2befb9e36dc52d715c3a67a9dbad36ac1edc376f

Authored by Adrian Bunk
Committed by Linus Torvalds
1 parent e2afe67453

[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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

include/linux/blkdev.h
... ... @@ -728,7 +728,7 @@
728 728 return bits;
729 729 }
730 730  
731   -extern inline unsigned int block_size(struct block_device *bdev)
  731 +static inline unsigned int block_size(struct block_device *bdev)
732 732 {
733 733 return bdev->bd_block_size;
734 734 }