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
897d8527
Commit
897d8527
authored
Aug 03, 2008
by
Russell King
Committed by
Russell King
Aug 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Fix circular include dependency with IRQ headers
Signed-off-by:
Russell King
<
rmk+kernel@arm.linux.org.uk
>
parent
bccf6502
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
21 deletions
+20
-21
arch/arm/include/asm/hw_irq.h
arch/arm/include/asm/hw_irq.h
+19
-1
arch/arm/include/asm/mach/irq.h
arch/arm/include/asm/mach/irq.h
+0
-20
arch/arm/kernel/irq.c
arch/arm/kernel/irq.c
+1
-0
No files found.
arch/arm/include/asm/hw_irq.h
View file @
897d8527
...
...
@@ -4,6 +4,24 @@
#ifndef _ARCH_ARM_HW_IRQ_H
#define _ARCH_ARM_HW_IRQ_H
#include <asm/mach/irq.h>
static
inline
void
ack_bad_irq
(
int
irq
)
{
extern
unsigned
long
irq_err_count
;
irq_err_count
++
;
}
/*
* Obsolete inline function for calling irq descriptor handlers.
*/
static
inline
void
desc_handle_irq
(
unsigned
int
irq
,
struct
irq_desc
*
desc
)
{
desc
->
handle_irq
(
irq
,
desc
);
}
void
set_irq_flags
(
unsigned
int
irq
,
unsigned
int
flags
);
#define IRQF_VALID (1 << 0)
#define IRQF_PROBE (1 << 1)
#define IRQF_NOAUTOEN (1 << 2)
#endif
arch/arm/include/asm/mach/irq.h
View file @
897d8527
...
...
@@ -21,20 +21,6 @@ extern void (*init_arch_irq)(void);
extern
void
init_FIQ
(
void
);
extern
int
show_fiq_list
(
struct
seq_file
*
,
void
*
);
/*
* Obsolete inline function for calling irq descriptor handlers.
*/
static
inline
void
desc_handle_irq
(
unsigned
int
irq
,
struct
irq_desc
*
desc
)
{
desc
->
handle_irq
(
irq
,
desc
);
}
void
set_irq_flags
(
unsigned
int
irq
,
unsigned
int
flags
);
#define IRQF_VALID (1 << 0)
#define IRQF_PROBE (1 << 1)
#define IRQF_NOAUTOEN (1 << 2)
/*
* This is for easy migration, but should be changed in the source
*/
...
...
@@ -45,10 +31,4 @@ do { \
spin_unlock(&desc->lock); \
} while(0)
extern
unsigned
long
irq_err_count
;
static
inline
void
ack_bad_irq
(
int
irq
)
{
irq_err_count
++
;
}
#endif
arch/arm/kernel/irq.c
View file @
897d8527
...
...
@@ -38,6 +38,7 @@
#include <linux/proc_fs.h>
#include <asm/system.h>
#include <asm/mach/irq.h>
#include <asm/mach/time.h>
/*
...
...
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