You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
3c52x: remove IRQF_SAMPLE_RANDOM from legacy MCA drivers.
If you are genuinely using one of these legacy MCA drivers
then you are tragically on hardware where you really don't
have the extra CPU cycles to be wasting on this.
In addition, it makes two less cases for people to inadvertently
blindly copy flags from without explicitly thinking whether it
makes sense -- see the addition to feature-removal.txt as per
commit 9d9b8fb0e5.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
45b0cb8abd
commit
5d6076bb2e
+1
-1
@@ -287,7 +287,7 @@ static int elmc_open(struct net_device *dev)
|
||||
|
||||
elmc_id_attn586(); /* disable interrupts */
|
||||
|
||||
ret = request_irq(dev->irq, elmc_interrupt, IRQF_SHARED | IRQF_SAMPLE_RANDOM,
|
||||
ret = request_irq(dev->irq, elmc_interrupt, IRQF_SHARED,
|
||||
dev->name, dev);
|
||||
if (ret) {
|
||||
pr_err("%s: couldn't get irq %d\n", dev->name, dev->irq);
|
||||
|
||||
Reference in New Issue
Block a user