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
929fe66c
Commit
929fe66c
authored
Nov 10, 2002
by
Art Haas
Committed by
Andy Grover
Nov 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] C99 designated initializers for arch/arm
parent
be00419b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
arch/arm/kernel/setup.c
arch/arm/kernel/setup.c
+6
-6
arch/arm/mach-footbridge/isa-irq.c
arch/arm/mach-footbridge/isa-irq.c
+1
-1
arch/arm/mm/discontig.c
arch/arm/mm/discontig.c
+4
-4
No files found.
arch/arm/kernel/setup.c
View file @
929fe66c
...
...
@@ -503,12 +503,12 @@ __tagtable(ATAG_MEM, parse_tag_mem32);
#if defined(CONFIG_VGA_CONSOLE) || defined(CONFIG_DUMMY_CONSOLE)
struct
screen_info
screen_info
=
{
orig_video_lines:
30
,
orig_video_cols:
80
,
orig_video_mode:
0
,
orig_video_ega_bx:
0
,
orig_video_isVGA:
1
,
orig_video_points:
8
.
orig_video_lines
=
30
,
.
orig_video_cols
=
80
,
.
orig_video_mode
=
0
,
.
orig_video_ega_bx
=
0
,
.
orig_video_isVGA
=
1
,
.
orig_video_points
=
8
};
static
int
__init
parse_tag_videotext
(
const
struct
tag
*
tag
)
...
...
arch/arm/mach-footbridge/isa-irq.c
View file @
929fe66c
...
...
@@ -102,7 +102,7 @@ isa_irq_handler(unsigned int irq, struct irqdesc *desc, struct pt_regs *regs)
desc
->
handle
(
isa_irq
,
desc
,
regs
);
}
static
struct
irqaction
irq_cascade
=
{
handler
:
no_action
,
name
:
"cascade"
,
};
static
struct
irqaction
irq_cascade
=
{
.
handler
=
no_action
,
.
name
=
"cascade"
,
};
static
struct
resource
pic1_resource
=
{
"pic1"
,
0x20
,
0x3f
};
static
struct
resource
pic2_resource
=
{
"pic2"
,
0xa0
,
0xbf
};
...
...
arch/arm/mm/discontig.c
View file @
929fe66c
...
...
@@ -26,10 +26,10 @@
static
bootmem_data_t
node_bootmem_data
[
NR_NODES
];
pg_data_t
discontig_node_data
[
NR_NODES
]
=
{
{
bdata
:
&
node_bootmem_data
[
0
]
},
{
bdata
:
&
node_bootmem_data
[
1
]
},
{
bdata
:
&
node_bootmem_data
[
2
]
},
{
bdata
:
&
node_bootmem_data
[
3
]
}
{
.
bdata
=
&
node_bootmem_data
[
0
]
},
{
.
bdata
=
&
node_bootmem_data
[
1
]
},
{
.
bdata
=
&
node_bootmem_data
[
2
]
},
{
.
bdata
=
&
node_bootmem_data
[
3
]
}
};
EXPORT_SYMBOL
(
discontig_node_data
);
...
...
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