Skip to content

Commit

Permalink
[isa] Fix a small typo in isa.c.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
pkt authored and Michael Brown committed Nov 8, 2008
1 parent 9a52ba0 commit 180d99f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/drivers/bus/isa.c
Expand Up @@ -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 );

Expand Down

0 comments on commit 180d99f

Please sign in to comment.