diff options
author | Alfred M. Szmidt <ams@gnu.org> | 2005-06-02 18:44:36 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:15:26 +0200 |
commit | e84cb79bec1f5cfa976558bbc9c155b8b82a1b45 (patch) | |
tree | 2b1c0426add5018ec693593d611ac588b7f43fb4 /linux/dev/include | |
parent | 174f866d199b6a7e60d708e7e822ea27687cc20c (diff) |
2005-05-26 Alfred M. Szmidt <ams@gnu.org>
* device/cons.h (cn_tab) [KERNEL]: Removed extern declaration.
* linux/dev/include/linux/fs.h (super_blocks): Declare as an
pointer.
Diffstat (limited to 'linux/dev/include')
-rw-r--r-- | linux/dev/include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/dev/include/linux/fs.h b/linux/dev/include/linux/fs.h index 974e9e7..740ebb5 100644 --- a/linux/dev/include/linux/fs.h +++ b/linux/dev/include/linux/fs.h @@ -621,7 +621,7 @@ extern int fs_may_umount(kdev_t dev, struct inode * mount_root); extern int fs_may_remount_ro(kdev_t dev); extern struct file *first_file; -extern struct super_block super_blocks[NR_SUPER]; +extern struct super_block *super_blocks; extern void refile_buffer(struct buffer_head * buf); extern void set_writetime(struct buffer_head * buf, int flag); |