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
91796c23
Commit
91796c23
authored
Mar 18, 2011
by
Mike Frysinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Blackfin: SMP: convert to irq chip functions
Signed-off-by:
Mike Frysinger
<
vapier@gentoo.org
>
parent
9f51a874
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
arch/blackfin/mach-bf561/smp.c
arch/blackfin/mach-bf561/smp.c
+5
-1
No files found.
arch/blackfin/mach-bf561/smp.c
View file @
91796c23
...
@@ -154,9 +154,13 @@ void platform_clear_ipi(unsigned int cpu, int irq)
...
@@ -154,9 +154,13 @@ void platform_clear_ipi(unsigned int cpu, int irq)
void
__cpuinit
bfin_local_timer_setup
(
void
)
void
__cpuinit
bfin_local_timer_setup
(
void
)
{
{
#if defined(CONFIG_TICKSOURCE_CORETMR)
#if defined(CONFIG_TICKSOURCE_CORETMR)
struct
irq_chip
*
chip
=
get_irq_chip
(
IRQ_CORETMR
);
struct
irq_desc
*
desc
=
irq_to_desc
(
IRQ_CORETMR
);
bfin_coretmr_init
();
bfin_coretmr_init
();
bfin_coretmr_clockevent_init
();
bfin_coretmr_clockevent_init
();
get_irq_chip
(
IRQ_CORETMR
)
->
unmask
(
IRQ_CORETMR
);
chip
->
irq_unmask
(
&
desc
->
irq_data
);
#else
#else
/* Power down the core timer, just to play safe. */
/* Power down the core timer, just to play safe. */
bfin_write_TCNTL
(
0
);
bfin_write_TCNTL
(
0
);
...
...
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