Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137621
b: refs/heads/master
c: 9804657
h: refs/heads/master
i:
  137619: 30bc154
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Mar 27, 2009
1 parent 64bf685 commit c219329
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 33050ec7a2b83bc048b2322c79af25df6fdcb879
refs/heads/master: 9804657ec488380637226d08c808b29ede566908
6 changes: 5 additions & 1 deletion trunk/drivers/ide/ide_arm.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
#define IDE_ARM_IO 0x1f0
#define IDE_ARM_IRQ IRQ_HARDDISK

static const struct ide_port_info ide_arm_port_info = {
.host_flags = IDE_HFLAG_NO_DMA,
};

static int __init ide_arm_init(void)
{
unsigned long base = IDE_ARM_IO, ctl = IDE_ARM_IO + 0x206;
Expand All @@ -41,7 +45,7 @@ static int __init ide_arm_init(void)
hw.irq = IDE_ARM_IRQ;
hw.chipset = ide_generic;

return ide_host_add(NULL, hws, NULL);
return ide_host_add(&ide_arm_port_info, hws, NULL);
}

module_init(ide_arm_init);
Expand Down

0 comments on commit c219329

Please sign in to comment.