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
5331dd5f
Commit
5331dd5f
authored
Dec 01, 2002
by
Art Haas
Committed by
Linus Torvalds
Dec 01, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] C99 initializer for arch/ppc/amiga/amiints.c
parent
3fb075a2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
arch/ppc/amiga/amiints.c
arch/ppc/amiga/amiints.c
+6
-6
No files found.
arch/ppc/amiga/amiints.c
View file @
5331dd5f
...
@@ -310,14 +310,14 @@ static void ami_int7(int irq, void *dev_id, struct pt_regs *fp)
...
@@ -310,14 +310,14 @@ static void ami_int7(int irq, void *dev_id, struct pt_regs *fp)
and executes them in a loop. Having ami_badint at the end of the chain
and executes them in a loop. Having ami_badint at the end of the chain
is a bad idea. */
is a bad idea. */
struct
irqaction
amiga_sys_irqaction
[
AUTO_IRQS
]
=
{
struct
irqaction
amiga_sys_irqaction
[
AUTO_IRQS
]
=
{
{
handler
:
ami_badint
,
name
:
"spurious int"
},
{
.
handler
=
ami_badint
,
.
name
=
"spurious int"
},
{
handler
:
ami_int1
,
name
:
"int1 handler"
},
{
.
handler
=
ami_int1
,
.
name
=
"int1 handler"
},
{
0
,
/* CIAA */
},
{
0
,
/* CIAA */
},
{
handler
:
ami_int3
,
name
:
"int3 handler"
},
{
.
handler
=
ami_int3
,
.
name
=
"int3 handler"
},
{
handler
:
ami_int4
,
name
:
"int4 handler"
},
{
.
handler
=
ami_int4
,
.
name
=
"int4 handler"
},
{
handler
:
ami_int5
,
name
:
"int5 handler"
},
{
.
handler
=
ami_int5
,
.
name
=
"int5 handler"
},
{
0
,
/* CIAB */
},
{
0
,
/* CIAB */
},
{
handler
:
ami_int7
,
name
:
"int7 handler"
},
{
.
handler
=
ami_int7
,
.
name
=
"int7 handler"
},
};
};
#else
#else
void
(
*
amiga_default_handler
[
SYS_IRQS
])(
int
,
void
*
,
struct
pt_regs
*
)
=
{
void
(
*
amiga_default_handler
[
SYS_IRQS
])(
int
,
void
*
,
struct
pt_regs
*
)
=
{
...
...
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