Re: Increasing IDE Channels

From: Kronos
Date: Thu Jul 08 2004 - 13:27:53 EST


Il Thu, Jul 08, 2004 at 11:58:18AM -0400, Timothy Miller ha scritto:
> >Because hwifs are statically allocated, see drivers/ide/ide.c:
> >
> >ide_hwif_t ide_hwifs[MAX_HWIFS]; /* master data repository */
> >
> >Also if names are ide0..ide9, the following would be ide: and ide; (see
> >init_hwif_data in drivers/ide/ide.c).
> >
>
> Why wouldn't they be ide10 and ide11?

No:

static void init_hwif_data(ide_hwif_t *hwif, unsigned int index)
{
...
hwif->name[0] = 'i';
hwif->name[1] = 'd';
hwif->name[2] = 'e';
hwif->name[3] = '0' + index;

'0' + 10 is ':' and '0' + 11 is ';'

Luca
--
Home: http://kronoz.cjb.net
Porc i' mond che cio' sott i piedi!
V. Catozzo
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/