diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-02 13:56:43 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-02 13:56:43 -0500 |
commit | d9270a3f1d5b6f9de58250e8ecdba4c48c54c20b (patch) | |
tree | 777f519f513035c23e36890357e608e0581edcde /drivers/ide/ide-proc.c | |
parent | 327617e1da15c3f04bfc50018b0319bd40849022 (diff) |
ide: move create_proc_ide_drives() call to ide_device_add_all()
* Un-static create_proc_ide_drives() and call it from ide_device_add_all().
While at it:
* Rename create_proc_ide_drives() to ide_proc_port_register_devices().
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-proc.c')
-rw-r--r-- | drivers/ide/ide-proc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ide/ide-proc.c b/drivers/ide/ide-proc.c index c6ed84b84e8b..975c0ff0f438 100644 --- a/drivers/ide/ide-proc.c +++ b/drivers/ide/ide-proc.c | |||
@@ -739,7 +739,7 @@ void ide_proc_unregister_driver(ide_drive_t *drive, ide_driver_t *driver) | |||
739 | 739 | ||
740 | EXPORT_SYMBOL(ide_proc_unregister_driver); | 740 | EXPORT_SYMBOL(ide_proc_unregister_driver); |
741 | 741 | ||
742 | static void create_proc_ide_drives(ide_hwif_t *hwif) | 742 | void ide_proc_port_register_devices(ide_hwif_t *hwif) |
743 | { | 743 | { |
744 | int d; | 744 | int d; |
745 | struct proc_dir_entry *ent; | 745 | struct proc_dir_entry *ent; |
@@ -801,8 +801,6 @@ void ide_proc_register_port(ide_hwif_t *hwif) | |||
801 | 801 | ||
802 | ide_add_proc_entries(hwif->proc, hwif_entries, hwif); | 802 | ide_add_proc_entries(hwif->proc, hwif_entries, hwif); |
803 | } | 803 | } |
804 | |||
805 | create_proc_ide_drives(hwif); | ||
806 | } | 804 | } |
807 | 805 | ||
808 | #ifdef CONFIG_BLK_DEV_IDEPCI | 806 | #ifdef CONFIG_BLK_DEV_IDEPCI |