Commit 3c50a000 authored by Jindrich Makovicka's avatar Jindrich Makovicka Committed by Linus Torvalds

[PATCH] More HPT374 driver merge woes

There's a misplaced check returning error for
hpt_minimum_revision(dev,8) == TRUE still there, making the previous
fixes useless for the early revision HPT cards.

This fixes it.
parent a8c1914f
......@@ -991,11 +991,6 @@ static int __devinit init_hpt37x(struct pci_dev *dev)
if (pci_get_drvdata(dev))
goto init_hpt37X_done;
if (hpt_minimum_revision(dev,8))
{
printk(KERN_ERR "HPT374: Only 33MHz PCI timings are supported.\n");
return -EOPNOTSUPP;
}
/*
* adjust PLL based upon PCI clock, enable it, and wait for
* stabilization.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment