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
425e6258
Commit
425e6258
authored
Feb 25, 2004
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ACPI] delete unnecessary dmesg lines, fix spelling
parent
9f543557
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
6 deletions
+4
-6
arch/i386/kernel/acpi/boot.c
arch/i386/kernel/acpi/boot.c
+1
-1
arch/i386/kernel/mpparse.c
arch/i386/kernel/mpparse.c
+1
-1
arch/x86_64/kernel/acpi/boot.c
arch/x86_64/kernel/acpi/boot.c
+1
-1
arch/x86_64/kernel/mpparse.c
arch/x86_64/kernel/mpparse.c
+1
-1
drivers/acpi/pci_link.c
drivers/acpi/pci_link.c
+0
-2
No files found.
arch/i386/kernel/acpi/boot.c
View file @
425e6258
...
@@ -259,7 +259,7 @@ acpi_parse_nmi_src (
...
@@ -259,7 +259,7 @@ acpi_parse_nmi_src (
* programs the PIC-mode SCI to Level Trigger.
* programs the PIC-mode SCI to Level Trigger.
* (NO-OP if the BIOS set Level Trigger already)
* (NO-OP if the BIOS set Level Trigger already)
*
*
* If a PIC-mode SCI is not recog
zni
ed or gives spurious IRQ7's
* If a PIC-mode SCI is not recog
niz
ed or gives spurious IRQ7's
* it may require Edge Trigger -- use "acpi_pic_sci=edge"
* it may require Edge Trigger -- use "acpi_pic_sci=edge"
* (NO-OP if the BIOS set Edge Trigger already)
* (NO-OP if the BIOS set Edge Trigger already)
*
*
...
...
arch/i386/kernel/mpparse.c
View file @
425e6258
...
@@ -1156,7 +1156,7 @@ void __init mp_parse_prt (void)
...
@@ -1156,7 +1156,7 @@ void __init mp_parse_prt (void)
continue
;
continue
;
}
}
if
((
1
<<
bit
)
&
mp_ioapic_routing
[
ioapic
].
pin_programmed
[
idx
])
{
if
((
1
<<
bit
)
&
mp_ioapic_routing
[
ioapic
].
pin_programmed
[
idx
])
{
printk
(
KERN_DEBUG
"Pin %d-%d already programmed
\n
"
,
D
printk
(
KERN_DEBUG
"Pin %d-%d already programmed
\n
"
,
mp_ioapic_routing
[
ioapic
].
apic_id
,
ioapic_pin
);
mp_ioapic_routing
[
ioapic
].
apic_id
,
ioapic_pin
);
entry
->
irq
=
acpi_irq_to_vector
(
irq
);
entry
->
irq
=
acpi_irq_to_vector
(
irq
);
continue
;
continue
;
...
...
arch/x86_64/kernel/acpi/boot.c
View file @
425e6258
...
@@ -264,7 +264,7 @@ acpi_parse_hpet (
...
@@ -264,7 +264,7 @@ acpi_parse_hpet (
* programs the PIC-mode SCI to Level Trigger.
* programs the PIC-mode SCI to Level Trigger.
* (NO-OP if the BIOS set Level Trigger already)
* (NO-OP if the BIOS set Level Trigger already)
*
*
* If a PIC-mode SCI is not recog
zni
ed or gives spurious IRQ7's
* If a PIC-mode SCI is not recog
niz
ed or gives spurious IRQ7's
* it may require Edge Trigger -- use "acpi_pic_sci=edge"
* it may require Edge Trigger -- use "acpi_pic_sci=edge"
* (NO-OP if the BIOS set Edge Trigger already)
* (NO-OP if the BIOS set Edge Trigger already)
*
*
...
...
arch/x86_64/kernel/mpparse.c
View file @
425e6258
...
@@ -996,7 +996,7 @@ void __init mp_parse_prt (void)
...
@@ -996,7 +996,7 @@ void __init mp_parse_prt (void)
continue
;
continue
;
}
}
if
((
1
<<
bit
)
&
mp_ioapic_routing
[
ioapic
].
pin_programmed
[
idx
])
{
if
((
1
<<
bit
)
&
mp_ioapic_routing
[
ioapic
].
pin_programmed
[
idx
])
{
printk
(
KERN_DEBUG
"Pin %d-%d already programmed
\n
"
,
D
printk
(
KERN_DEBUG
"Pin %d-%d already programmed
\n
"
,
mp_ioapic_routing
[
ioapic
].
apic_id
,
ioapic_pin
);
mp_ioapic_routing
[
ioapic
].
apic_id
,
ioapic_pin
);
if
(
use_pci_vector
()
&&
!
platform_legacy_irq
(
irq
))
if
(
use_pci_vector
()
&&
!
platform_legacy_irq
(
irq
))
irq
=
IO_APIC_VECTOR
(
irq
);
irq
=
IO_APIC_VECTOR
(
irq
);
...
...
drivers/acpi/pci_link.c
View file @
425e6258
...
@@ -768,7 +768,6 @@ __setup("acpi_irq_pci=", acpi_irq_pci);
...
@@ -768,7 +768,6 @@ __setup("acpi_irq_pci=", acpi_irq_pci);
static
int
__init
acpi_irq_nobalance_set
(
char
*
str
)
static
int
__init
acpi_irq_nobalance_set
(
char
*
str
)
{
{
printk
(
"ACPI STATIC SET
\n
"
);
acpi_irq_balance
=
0
;
acpi_irq_balance
=
0
;
return
(
1
);
return
(
1
);
}
}
...
@@ -776,7 +775,6 @@ __setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
...
@@ -776,7 +775,6 @@ __setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
int
__init
acpi_irq_balance_set
(
char
*
str
)
int
__init
acpi_irq_balance_set
(
char
*
str
)
{
{
printk
(
"ACPI BALANCE SET
\n
"
);
acpi_irq_balance
=
1
;
acpi_irq_balance
=
1
;
return
(
1
);
return
(
1
);
}
}
...
...
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