]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/internal.h
aec62xx: fix PIO/DMA setup issues
[linux-2.6-omap-h63xx.git] / fs / internal.h
index f662b703bb97bcdbebe41c20f187fcdb9d5e4106..ea00126c9a5932aac9d56d02a075b7d6ae9c9093 100644 (file)
 
 #include <linux/ioctl32.h>
 
+struct super_block;
+
 /*
  * block_dev.c
  */
+#ifdef CONFIG_BLOCK
 extern struct super_block *blockdev_superblock;
 extern void __init bdev_cache_init(void);
 
-#define sb_is_blkdev_sb(sb) ((sb) == blockdev_superblock)
+static inline int sb_is_blkdev_sb(struct super_block *sb)
+{
+       return sb == blockdev_superblock;
+}
+
+#else
+static inline void bdev_cache_init(void)
+{
+}
+
+static inline int sb_is_blkdev_sb(struct super_block *sb)
+{
+       return 0;
+}
+#endif
 
 /*
  * char_dev.c