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
6e357500
Commit
6e357500
authored
Nov 25, 2002
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] named struct initialiser updates
parent
be21534d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
12 deletions
+10
-12
drivers/message/i2o/i2o_scsi.c
drivers/message/i2o/i2o_scsi.c
+4
-9
drivers/video/fbcon.c
drivers/video/fbcon.c
+3
-2
fs/file_table.c
fs/file_table.c
+3
-1
No files found.
drivers/message/i2o/i2o_scsi.c
View file @
6e357500
...
...
@@ -336,15 +336,10 @@ static void i2o_scsi_reply(struct i2o_handler *h, struct i2o_controller *c, stru
return
;
}
struct
i2o_handler
i2o_scsi_handler
=
{
i2o_scsi_reply
,
NULL
,
NULL
,
NULL
,
"I2O SCSI OSM"
,
0
,
I2O_CLASS_SCSI_PERIPHERAL
struct
i2o_handler
i2o_scsi_handler
=
{
.
reply
=
i2o_scsi_reply
,
.
name
=
"I2O SCSI OSM"
,
.
class
=
I2O_CLASS_SCSI_PERIPHERAL
,
};
/**
...
...
drivers/video/fbcon.c
View file @
6e357500
...
...
@@ -230,8 +230,9 @@ static void fbcon_vbl_detect(int irq, void *dummy, struct pt_regs *fp)
static
void
cursor_timer_handler
(
unsigned
long
dev_addr
);
static
struct
timer_list
cursor_timer
=
TIMER_INITIALIZER
(
cursor_timer_handler
,
0
,
0
);
static
struct
timer_list
cursor_timer
=
{
function:
cursor_timer_handler
};
static
void
cursor_timer_handler
(
unsigned
long
dev_addr
)
{
...
...
fs/file_table.c
View file @
6e357500
...
...
@@ -18,7 +18,9 @@
/* sysctl tunables... */
struct
files_stat_struct
files_stat
=
{
0
,
0
,
NR_FILE
};
struct
files_stat_struct
files_stat
=
{
.
max_files
=
NR_FILE
};
/* Here the new files go */
static
LIST_HEAD
(
anon_list
);
...
...
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