mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
nubus: Kill nubus_proc_detach_device()
Commit 59d8053f1e
("proc: Move non-public
stuff from linux/proc_fs.h to fs/proc/internal.h") broke Apple NuBus
support:
drivers/nubus/proc.c: In function ‘nubus_proc_detach_device’:
drivers/nubus/proc.c:156: error: dereferencing pointer to incomplete type
drivers/nubus/proc.c:158: error: dereferencing pointer to incomplete type
Fortunately nubus_proc_detach_device() is unused, and appears to have never
been used, so just remove it.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
60b7bf4e61
commit
e765acb467
@ -147,21 +147,6 @@ int nubus_proc_attach_device(struct nubus_dev *dev)
|
||||
}
|
||||
EXPORT_SYMBOL(nubus_proc_attach_device);
|
||||
|
||||
/* FIXME: this is certainly broken! */
|
||||
int nubus_proc_detach_device(struct nubus_dev *dev)
|
||||
{
|
||||
struct proc_dir_entry *e;
|
||||
|
||||
if ((e = dev->procdir)) {
|
||||
if (atomic_read(&e->count))
|
||||
return -EBUSY;
|
||||
remove_proc_entry(e->name, proc_bus_nubus_dir);
|
||||
dev->procdir = NULL;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(nubus_proc_detach_device);
|
||||
|
||||
/*
|
||||
* /proc/nubus stuff
|
||||
*/
|
||||
|
@ -87,7 +87,6 @@ static inline void nubus_proc_init(void) {}
|
||||
#endif
|
||||
int get_nubus_list(char *buf);
|
||||
int nubus_proc_attach_device(struct nubus_dev *dev);
|
||||
int nubus_proc_detach_device(struct nubus_dev *dev);
|
||||
/* If we need more precision we can add some more of these */
|
||||
struct nubus_dev* nubus_find_device(unsigned short category,
|
||||
unsigned short type,
|
||||
|
Loading…
Reference in New Issue
Block a user