Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19652
b: refs/heads/master
c: 0ef3b49
h: refs/heads/master
v: v3
  • Loading branch information
Arnaud Giersch authored and Linus Torvalds committed Feb 3, 2006
1 parent dcaede2 commit 12f620a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 88fc3897e3219e63ae6e2d180a6c87d033ef9f3b
refs/heads/master: 0ef3b49cc24963a11125971b8deaa8b46209d113
8 changes: 4 additions & 4 deletions trunk/Documentation/parport-lowlevel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ SYNOPSIS

struct parport_operations {
...
void (*write_status) (struct parport *port, unsigned char s);
void (*write_control) (struct parport *port, unsigned char s);
...
};

Expand Down Expand Up @@ -1097,9 +1097,9 @@ SYNOPSIS

struct parport_operations {
...
void (*frob_control) (struct parport *port,
unsigned char mask,
unsigned char val);
unsigned char (*frob_control) (struct parport *port,
unsigned char mask,
unsigned char val);
...
};

Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/parport/ieee1284.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ static void timeout_waiting_on_port (unsigned long cookie)
* set to zero, it returns immediately.
*
* If an interrupt occurs before the timeout period elapses, this
* function returns one immediately. If it times out, it returns
* a value greater than zero. An error code less than zero
* indicates an error (most likely a pending signal), and the
* calling code should finish what it's doing as soon as it can.
* function returns zero immediately. If it times out, it returns
* one. An error code less than zero indicates an error (most
* likely a pending signal), and the calling code should finish
* what it's doing as soon as it can.
*/

int parport_wait_event (struct parport *port, signed long timeout)
Expand Down Expand Up @@ -110,7 +110,7 @@ int parport_wait_event (struct parport *port, signed long timeout)
*
* If the status lines take on the desired values before the
* timeout period elapses, parport_poll_peripheral() returns zero
* immediately. A zero return value greater than zero indicates
* immediately. A return value greater than zero indicates
* a timeout. An error code (less than zero) indicates an error,
* most likely a signal that arrived, and the caller should
* finish what it is doing as soon as possible.
Expand Down

0 comments on commit 12f620a

Please sign in to comment.