Browse Source

Swarm: Fix crash due to missing initialization

If things are just right this will result in the hws[0]->parent being
passed to ide_host_add() being non-zero and an ooops a little later.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Ralf Baechle 16 years ago
parent
commit
3d977760b9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/ide/mips/swarm.c

+ 1 - 0
drivers/ide/mips/swarm.c

@@ -107,6 +107,7 @@ static int __devinit swarm_ide_probe(struct device *dev)
 
 
 	base = ioremap(offset, size);
 	base = ioremap(offset, size);
 
 
+	memset(&hw, 0, sizeof(hw));
 	for (i = 0; i <= 7; i++)
 	for (i = 0; i <= 7; i++)
 		hw.io_ports_array[i] =
 		hw.io_ports_array[i] =
 				(unsigned long)(base + ((0x1f0 + i) << 5));
 				(unsigned long)(base + ((0x1f0 + i) << 5));