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
nexedi
linux
Commits
9514a176
Commit
9514a176
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/s390
parent
5de3fe93
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
arch/s390/kernel/debug.c
arch/s390/kernel/debug.c
+4
-4
arch/s390/kernel/setup.c
arch/s390/kernel/setup.c
+4
-4
No files found.
arch/s390/kernel/debug.c
View file @
9514a176
...
...
@@ -150,10 +150,10 @@ DECLARE_MUTEX(debug_lock);
static
int
initialized
;
static
struct
file_operations
debug_file_ops
=
{
read:
debug_output
,
write:
debug_input
,
open:
debug_open
,
release:
debug_close
,
.
read
=
debug_output
,
.
write
=
debug_input
,
.
open
=
debug_open
,
.
release
=
debug_close
,
};
static
struct
proc_dir_entry
*
debug_proc_root_entry
;
...
...
arch/s390/kernel/setup.c
View file @
9514a176
...
...
@@ -553,8 +553,8 @@ static void c_stop(struct seq_file *m, void *v)
{
}
struct
seq_operations
cpuinfo_op
=
{
start:
c_start
,
next:
c_next
,
stop:
c_stop
,
show:
show_cpuinfo
,
.
start
=
c_start
,
.
next
=
c_next
,
.
stop
=
c_stop
,
.
show
=
show_cpuinfo
,
};
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