Commit a5da12ed authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Linus Torvalds

[PATCH] fix lots of warnings about 'struct tty_driver'

When compiling 2.5.20 (and ealier, likely) without procfs, the declaration
for struct tty_driver is missing in proc_fs.h, causing many compiler warnings
that are fixed by this patch.
parent 35ee6c85
...@@ -198,6 +198,7 @@ static inline struct proc_dir_entry *create_proc_info_entry(const char *name, ...@@ -198,6 +198,7 @@ static inline struct proc_dir_entry *create_proc_info_entry(const char *name,
mode_t mode, struct proc_dir_entry *base, get_info_t *get_info) mode_t mode, struct proc_dir_entry *base, get_info_t *get_info)
{ return NULL; } { return NULL; }
struct tty_driver;
static inline void proc_tty_register_driver(struct tty_driver *driver) {}; static inline void proc_tty_register_driver(struct tty_driver *driver) {};
static inline void proc_tty_unregister_driver(struct tty_driver *driver) {}; static inline void proc_tty_unregister_driver(struct tty_driver *driver) {};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment