Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
71271be3
Commit
71271be3
authored
Apr 23, 2004
by
Len Brown
Committed by
Len Brown
Apr 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ACPI] No IRQ known... - using IRQ 255 (Bjarni Rúnar Einarsson)
http://bugzilla.kernel.org/show_bug.cgi?id=2148
parent
f8bdcc51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/acpi/pci_irq.c
drivers/acpi/pci_irq.c
+1
-1
No files found.
drivers/acpi/pci_irq.c
View file @
71271be3
...
@@ -368,7 +368,7 @@ acpi_pci_irq_enable (
...
@@ -368,7 +368,7 @@ acpi_pci_irq_enable (
if
(
!
irq
)
{
if
(
!
irq
)
{
printk
(
KERN_WARNING
PREFIX
"No IRQ known for interrupt pin %c of device %s"
,
(
'A'
+
pin
),
pci_name
(
dev
));
printk
(
KERN_WARNING
PREFIX
"No IRQ known for interrupt pin %c of device %s"
,
(
'A'
+
pin
),
pci_name
(
dev
));
/* Interrupt Line values above 0xF are forbidden */
/* Interrupt Line values above 0xF are forbidden */
if
(
dev
->
irq
&&
dev
->
irq
>=
0xF
)
{
if
(
dev
->
irq
&&
(
dev
->
irq
<=
0xF
)
)
{
printk
(
" - using IRQ %d
\n
"
,
dev
->
irq
);
printk
(
" - using IRQ %d
\n
"
,
dev
->
irq
);
return_VALUE
(
dev
->
irq
);
return_VALUE
(
dev
->
irq
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment