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
eaeaf871
Commit
eaeaf871
authored
May 30, 2004
by
Alexander Viro
Committed by
Linus Torvalds
May 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sparse: tty_driver ->write_proc()
Made ->write_proc in tty_driver suitable for procfs write callback
parent
6d7fee26
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/linux/tty_driver.h
include/linux/tty_driver.h
+2
-2
No files found.
include/linux/tty_driver.h
View file @
eaeaf871
...
@@ -145,7 +145,7 @@ struct tty_operations {
...
@@ -145,7 +145,7 @@ struct tty_operations {
void
(
*
send_xchar
)(
struct
tty_struct
*
tty
,
char
ch
);
void
(
*
send_xchar
)(
struct
tty_struct
*
tty
,
char
ch
);
int
(
*
read_proc
)(
char
*
page
,
char
**
start
,
off_t
off
,
int
(
*
read_proc
)(
char
*
page
,
char
**
start
,
off_t
off
,
int
count
,
int
*
eof
,
void
*
data
);
int
count
,
int
*
eof
,
void
*
data
);
int
(
*
write_proc
)(
struct
file
*
file
,
const
char
*
buffer
,
int
(
*
write_proc
)(
struct
file
*
file
,
const
char
__user
*
buffer
,
unsigned
long
count
,
void
*
data
);
unsigned
long
count
,
void
*
data
);
int
(
*
tiocmget
)(
struct
tty_struct
*
tty
,
struct
file
*
file
);
int
(
*
tiocmget
)(
struct
tty_struct
*
tty
,
struct
file
*
file
);
int
(
*
tiocmset
)(
struct
tty_struct
*
tty
,
struct
file
*
file
,
int
(
*
tiocmset
)(
struct
tty_struct
*
tty
,
struct
file
*
file
,
...
@@ -207,7 +207,7 @@ struct tty_driver {
...
@@ -207,7 +207,7 @@ struct tty_driver {
void
(
*
send_xchar
)(
struct
tty_struct
*
tty
,
char
ch
);
void
(
*
send_xchar
)(
struct
tty_struct
*
tty
,
char
ch
);
int
(
*
read_proc
)(
char
*
page
,
char
**
start
,
off_t
off
,
int
(
*
read_proc
)(
char
*
page
,
char
**
start
,
off_t
off
,
int
count
,
int
*
eof
,
void
*
data
);
int
count
,
int
*
eof
,
void
*
data
);
int
(
*
write_proc
)(
struct
file
*
file
,
const
char
*
buffer
,
int
(
*
write_proc
)(
struct
file
*
file
,
const
char
__user
*
buffer
,
unsigned
long
count
,
void
*
data
);
unsigned
long
count
,
void
*
data
);
int
(
*
tiocmget
)(
struct
tty_struct
*
tty
,
struct
file
*
file
);
int
(
*
tiocmget
)(
struct
tty_struct
*
tty
,
struct
file
*
file
);
int
(
*
tiocmset
)(
struct
tty_struct
*
tty
,
struct
file
*
file
,
int
(
*
tiocmset
)(
struct
tty_struct
*
tty
,
struct
file
*
file
,
...
...
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