From: Yan Hong Date: Thu, 29 Nov 2012 03:18:11 +0000 (+1100) Subject: fs/buffer.c: do not inline exported function X-Git-Tag: next-20121205~1^2~225 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6ff1d8fcba0f73129ff3ee1b34345f6a3747144d;p=karo-tx-linux.git fs/buffer.c: do not inline exported function It makes no sense to inline an exported function. Signed-off-by: Yan Hong Signed-off-by: Andrew Morton --- diff --git a/fs/buffer.c b/fs/buffer.c index 3c983ca5eec3..2ae630a9a4ca 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -46,8 +46,7 @@ static int fsync_buffers_list(spinlock_t *lock, struct list_head *list); #define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers) -inline void -init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private) +void init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private) { bh->b_end_io = handler; bh->b_private = private;