From 87c1efbfeac49849b981a7eac8cba42d4a49b2e9 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 11 May 2007 13:29:54 +0200 Subject: Fix compile/link of init/do_mounts.c with !CONFIG_BLOCK We need a stub function for when CONFIG_BLOCK isn't set. Signed-off-by: Jens Axboe diff --git a/include/linux/genhd.h b/include/linux/genhd.h index f589559..4c03ee3 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h @@ -434,6 +434,10 @@ static inline struct block_device *bdget_disk(struct gendisk *disk, int index) #endif -#endif +#else /* CONFIG_BLOCK */ + +static inline void printk_all_partitions(void) { } + +#endif /* CONFIG_BLOCK */ #endif -- cgit v0.10.2