Revert part of previous commit. In alpha_platform_alloc_ide_intr(),

there's no RID for us to work with.
This commit is contained in:
Marcel Moolenaar 2006-04-22 19:04:21 +00:00
parent babd660805
commit 4b1ead982e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=157964

View File

@ -96,12 +96,7 @@ struct resource *
alpha_platform_alloc_ide_intr(int chan)
{
int irqs[2] = { 14, 15 };
struct resource *rv;
rv = isa_alloc_intr(0, 0, irqs[chan]);
if (rv != NULL)
rman_set_rid(rv, *rid);
return (rv);
return (isa_alloc_intr(0, 0, irqs[chan]));
}
int