diff options
author | Alexey Dobriyan | 2008-04-27 15:38:34 +0200 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz | 2008-04-27 15:38:34 +0200 |
commit | fd0949e6e84e4e1649d8ea7367e78e72f59bb19f (patch) | |
tree | 02036179f546b483630a144234dd65d94ec143da | |
parent | ide: remove /proc/ide/ali (diff) | |
download | kernel-qcow2-linux-fd0949e6e84e4e1649d8ea7367e78e72f59bb19f.tar.gz kernel-qcow2-linux-fd0949e6e84e4e1649d8ea7367e78e72f59bb19f.tar.xz kernel-qcow2-linux-fd0949e6e84e4e1649d8ea7367e78e72f59bb19f.zip |
ide: remove now unused ide_pci_create_host_proc()
It creates files in proc with obsoleted ->get_info interface.
Signed-off-by: Alexey Dobriyan <adobriyan@openvz.org>
Cc: Andrew Morton <akpm@osdl.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r-- | drivers/ide/ide-proc.c | 8 | ||||
-rw-r--r-- | include/linux/ide.h | 4 |
2 files changed, 0 insertions, 12 deletions
diff --git a/drivers/ide/ide-proc.c b/drivers/ide/ide-proc.c index d9d98ac85b29..7b2f3815a838 100644 --- a/drivers/ide/ide-proc.c +++ b/drivers/ide/ide-proc.c @@ -786,14 +786,6 @@ void ide_proc_register_port(ide_hwif_t *hwif) } } -#ifdef CONFIG_BLK_DEV_IDEPCI -void ide_pci_create_host_proc(const char *name, get_info_t *get_info) -{ - create_proc_info_entry(name, 0, proc_ide_root, get_info); -} -EXPORT_SYMBOL_GPL(ide_pci_create_host_proc); -#endif - void ide_proc_unregister_port(ide_hwif_t *hwif) { if (hwif->proc) { diff --git a/include/linux/ide.h b/include/linux/ide.h index 772228cf7115..32fd77bb4436 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -705,10 +705,6 @@ void ide_add_generic_settings(ide_drive_t *); read_proc_t proc_ide_read_capacity; read_proc_t proc_ide_read_geometry; -#ifdef CONFIG_BLK_DEV_IDEPCI -void ide_pci_create_host_proc(const char *, get_info_t *); -#endif - /* * Standard exit stuff: */ |