forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NCR53C8XX: Remove deprecated IRQ flags (SA_*)
Stop using deprecated IRQ flags in ncr53c8xx documentaion. The new IRQF_* macros are used instead. Signed-off-by: Ahmed S. Darwish <[email protected]> Cc: James Bottomley <[email protected]> Cc: Matthew Wilcox <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -195,9 +195,9 @@ Sun Feb 14:00 1999 Gerard Roudier ([email protected]) | |
Pointed out by Leonard Zubkoff. | ||
- Allow to tune request_irq() flags from the boot command line using | ||
ncr53c8xx=irqm:??, as follows: | ||
a) If bit 0x10 is set in irqm, SA_SHIRQ flag is not used. | ||
b) If bit 0x20 is set in irqm, SA_INTERRUPT flag is not used. | ||
By default the driver uses both SA_SHIRQ and SA_INTERRUPT. | ||
a) If bit 0x10 is set in irqm, IRQF_SHARED flag is not used. | ||
b) If bit 0x20 is set in irqm, IRQF_DISABLED flag is not used. | ||
By default the driver uses both IRQF_SHARED and IRQF_DISABLED. | ||
Option 'ncr53c8xx=irqm:0x20' may be used when an IRQ is shared by | ||
a 53C8XX adapter and a network board. | ||
- Tiny mispelling fixed (ABORT instead of ABRT). Was fortunately | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters