david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[isa] Fix a small typo in isa.c.

With this patch ISA drivers actually get probed so they have a fair
chance of working now.

Signed-off-by: Pantelis Koukousoulas <pktoss@gmail.com>
This commit is contained in:
Pantelis Koukousoulas 2008-11-07 20:18:28 +02:00 committed by Michael Brown
parent 9a52ba0cfa
commit 180d99fc22
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ static isa_probe_addr_t isa_extra_probe_addrs[] = {
(driver)->probe_addrs[(ioidx)] )
static struct isa_driver isa_drivers[0]
__table_start ( struct isa_driver, isa_driver );
__table_start ( struct isa_driver, isa_drivers );
static struct isa_driver isa_drivers_end[0]
__table_end ( struct isa_driver, isa_driver );
__table_end ( struct isa_driver, isa_drivers );
static void isabus_remove ( struct root_device *rootdev );