aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-07-15 15:21:46 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-07-15 15:21:46 -0400
commitdbac9f895f628deebc99dee86dfd21c1823013c3 (patch)
treef99ca6b5afb2557d3576410d2be7717409e57a6d /drivers/ide/ide.c
parent232595eaff951e96cabe5e85fed35f66b72ff51e (diff)
ide: cleanup init_ide_data()
* Remove no longer need init_ide_data() call from ide_setup(). * Cleanup init_ide_data(). Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide.c')
-rw-r--r--drivers/ide/ide.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c
index 6f600d81a972..e8c88ff2f6b6 100644
--- a/drivers/ide/ide.c
+++ b/drivers/ide/ide.c
@@ -151,32 +151,9 @@ static void ide_port_init_devices_data(ide_hwif_t *hwif)
151 } 151 }
152} 152}
153 153
154/*
155 * init_ide_data() sets reasonable default values into all fields
156 * of all instances of the hwifs and drives, but only on the first call.
157 * Subsequent calls have no effect (they don't wipe out anything).
158 *
159 * This routine is normally called at driver initialization time,
160 * but may also be called MUCH earlier during kernel "command-line"
161 * parameter processing. As such, we cannot depend on any other parts
162 * of the kernel (such as memory allocation) to be functioning yet.
163 *
164 * This is too bad, as otherwise we could dynamically allocate the
165 * ide_drive_t structs as needed, rather than always consuming memory
166 * for the max possible number (MAX_HWIFS * MAX_DRIVES) of them.
167 *
168 * FIXME: We should stuff the setup data into __init and copy the
169 * relevant hwifs/allocate them properly during boot.
170 */
171#define MAGIC_COOKIE 0x12345678
172static void __init init_ide_data (void) 154static void __init init_ide_data (void)
173{ 155{
174 unsigned int index; 156 unsigned int index;
175 static unsigned long magic_cookie = MAGIC_COOKIE;
176
177 if (magic_cookie != MAGIC_COOKIE)
178 return; /* already initialized */
179 magic_cookie = 0;
180 157
181 /* Initialise all interface structures */ 158 /* Initialise all interface structures */
182 for (index = 0; index < MAX_HWIFS; ++index) { 159 for (index = 0; index < MAX_HWIFS; ++index) {
@@ -730,7 +707,6 @@ EXPORT_SYMBOL(generic_ide_ioctl);
730static int __init ide_setup(char *s) 707static int __init ide_setup(char *s)
731{ 708{
732 printk(KERN_INFO "ide_setup: %s", s); 709 printk(KERN_INFO "ide_setup: %s", s);
733 init_ide_data ();
734 710
735#ifdef CONFIG_BLK_DEV_IDEDOUBLER 711#ifdef CONFIG_BLK_DEV_IDEDOUBLER
736 if (!strcmp(s, "ide=doubler")) { 712 if (!strcmp(s, "ide=doubler")) {