diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | device/cons.h | 1 | ||||
-rw-r--r-- | linux/dev/include/linux/fs.h | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,10 @@ +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. + 2005-02-10 Guillem Jover <guillem@hadrons.org> * linux/dev/glue/block.c (rdwr_partial): Remove leftover assert. diff --git a/device/cons.h b/device/cons.h index bcaeffc..dbe2993 100644 --- a/device/cons.h +++ b/device/cons.h @@ -46,5 +46,4 @@ struct consdev { #ifdef KERNEL extern struct consdev constab[]; -extern struct consdev *cn_tab; #endif 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); |