diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-26 14:13:09 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-26 14:13:09 -0500 |
commit | c99c92c58757985096e2d195dc1631246d99d686 (patch) | |
tree | c1663bd62c4fbc8ebf6020ea189c74a9c5523be6 /drivers/ide/legacy/falconide.c | |
parent | 81ca691981da718727281238b435dcf1528d2fda (diff) |
ide: print banner message once per controller in m68k host drivers
* Print banner message once per controller in m68k host drivers.
* Change printk() level to KERN_INFO in buddha, falconide and gayle.
* Add banner message to q40ide.
This is basically a preparation for the future IDE layer changes.
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/legacy/falconide.c')
-rw-r--r-- | drivers/ide/legacy/falconide.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/legacy/falconide.c b/drivers/ide/legacy/falconide.c index dec2ef99c778..2860956bdcb0 100644 --- a/drivers/ide/legacy/falconide.c +++ b/drivers/ide/legacy/falconide.c | |||
@@ -67,6 +67,8 @@ static int __init falconide_init(void) | |||
67 | if (MACH_IS_ATARI && ATARIHW_PRESENT(IDE)) { | 67 | if (MACH_IS_ATARI && ATARIHW_PRESENT(IDE)) { |
68 | hw_regs_t hw; | 68 | hw_regs_t hw; |
69 | 69 | ||
70 | printk(KERN_INFO "ide: Falcon IDE controller\n"); | ||
71 | |||
70 | ide_setup_ports(&hw, ATA_HD_BASE, falconide_offsets, | 72 | ide_setup_ports(&hw, ATA_HD_BASE, falconide_offsets, |
71 | 0, 0, NULL, | 73 | 0, 0, NULL, |
72 | // falconide_iops, | 74 | // falconide_iops, |
@@ -80,8 +82,6 @@ static int __init falconide_init(void) | |||
80 | ide_init_port_data(hwif, index); | 82 | ide_init_port_data(hwif, index); |
81 | ide_init_port_hw(hwif, &hw); | 83 | ide_init_port_hw(hwif, &hw); |
82 | 84 | ||
83 | printk("ide%d: Falcon IDE interface\n", index); | ||
84 | |||
85 | ide_device_add(idx); | 85 | ide_device_add(idx); |
86 | } | 86 | } |
87 | } | 87 | } |