Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
8732fc4b
Commit
8732fc4b
authored
May 19, 2008
by
Alexey Starikovskiy
Committed by
Thomas Gleixner
May 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: move mp_bus_not_pci from mpparse.c
parent
ce6444d3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
10 deletions
+8
-10
arch/x86/kernel/io_apic_32.c
arch/x86/kernel/io_apic_32.c
+6
-0
arch/x86/kernel/io_apic_64.c
arch/x86/kernel/io_apic_64.c
+2
-0
arch/x86/kernel/mpparse.c
arch/x86/kernel/mpparse.c
+0
-10
No files found.
arch/x86/kernel/io_apic_32.c
View file @
8732fc4b
...
...
@@ -81,6 +81,12 @@ struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
/* # of MP IRQ source entries */
int
mp_irq_entries
;
#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
int
mp_bus_id_to_type
[
MAX_MP_BUSSES
];
#endif
DECLARE_BITMAP
(
mp_bus_not_pci
,
MAX_MP_BUSSES
);
static
int
disable_timer_pin_1
__initdata
;
/*
...
...
arch/x86/kernel/io_apic_64.c
View file @
8732fc4b
...
...
@@ -113,6 +113,8 @@ struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
/* # of MP IRQ source entries */
int
mp_irq_entries
;
DECLARE_BITMAP
(
mp_bus_not_pci
,
MAX_MP_BUSSES
);
/*
* Rough estimation of how many shared IRQs there are, can
* be changed anytime.
...
...
arch/x86/kernel/mpparse.c
View file @
8732fc4b
...
...
@@ -32,16 +32,6 @@
#include <mach_mpparse.h>
#endif
/*
* Various Linux-internal data structures created from the
* MP-table.
*/
#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
int
mp_bus_id_to_type
[
MAX_MP_BUSSES
];
#endif
DECLARE_BITMAP
(
mp_bus_not_pci
,
MAX_MP_BUSSES
);
/*
* Checksum an MP configuration block.
*/
...
...
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