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
8364a826
Commit
8364a826
authored
May 30, 2002
by
James Simmons
Browse files
Options
Browse Files
Download
Plain Diff
Merge heisenberg.transvirtual.com:/tmp/linus-2.5
into heisenberg.transvirtual.com:/tmp/fbdev-2.5
parents
8643070a
85d20089
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
14 deletions
+10
-14
drivers/acpi/pci_irq.c
drivers/acpi/pci_irq.c
+8
-12
drivers/scsi/qla1280.c
drivers/scsi/qla1280.c
+2
-2
No files found.
drivers/acpi/pci_irq.c
View file @
8364a826
...
...
@@ -325,20 +325,16 @@ acpi_pci_irq_enable (
* values override any BIOS-assinged IRQs set during boot.
*/
irq
=
acpi_pci_irq_lookup
(
0
,
dev
->
bus
->
number
,
PCI_SLOT
(
dev
->
devfn
),
pin
);
if
(
irq
)
dev
->
irq
=
irq
;
/*
* If no PRT entry was found and the device wasn't assigned an IRQ
* during boot we'll try to derive an IRQ from the device's parent
* bridge.
* If no PRT entry was found, we'll try to derive an IRQ from the
* device's parent bridge.
*/
if
(
!
dev
->
irq
&&
dev
->
bus
->
self
)
{
irq
=
acpi_pci_irq_derive
(
dev
,
pin
);
if
(
irq
)
dev
->
irq
=
irq
;
}
if
(
!
irq
)
irq
=
acpi_pci_irq_derive
(
dev
,
pin
);
if
(
irq
)
dev
->
irq
=
irq
;
if
(
!
dev
->
irq
)
{
printk
(
KERN_WARNING
PREFIX
"No IRQ known for interrupt pin %c of device %s
\n
"
,
(
'A'
+
pin
),
dev
->
slot_name
);
...
...
drivers/scsi/qla1280.c
View file @
8364a826
...
...
@@ -806,8 +806,8 @@ qla1280_do_device_init(struct pci_dev *pdev,
struct
scsi_qla_host
*
ha
;
struct
device_reg
*
reg
;
printk
(
"qla1x160: Initializing ISP12160 on PCI bus %i, dev %i
\n
"
,
pdev
->
bus
->
number
,
PCI_SLOT
(
pdev
->
devfn
));
printk
(
"qla1x160: Initializing ISP12160 on PCI bus %i, dev %i
, irq %i
\n
"
,
pdev
->
bus
->
number
,
PCI_SLOT
(
pdev
->
devfn
)
,
pdev
->
irq
);
host
=
scsi_register
(
template
,
sizeof
(
struct
scsi_qla_host
));
if
(
!
host
)
{
...
...
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