diff options
author | Keith Packard <keithp@keithp.com> | 2003-11-02 19:56:10 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2003-11-02 19:56:10 +0000 |
commit | 5378236aa647ec9a723a3e5fbd2a57eb286a1938 (patch) | |
tree | b178d5f95a4882d617dbbdab8cb5e0b40003a704 /hw/kdrive/linux/ps2.c | |
parent | 9e94665cf9cf0f74dff5b3cdaa4cde99e234fa45 (diff) |
merge xfixes_2_branch back to HEAD
Diffstat (limited to 'hw/kdrive/linux/ps2.c')
-rw-r--r-- | hw/kdrive/linux/ps2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/kdrive/linux/ps2.c b/hw/kdrive/linux/ps2.c index 3a3444366..da3372011 100644 --- a/hw/kdrive/linux/ps2.c +++ b/hw/kdrive/linux/ps2.c @@ -33,7 +33,7 @@ #include "scrnintstr.h" #include "kdrive.h" -int +static int Ps2ReadBytes (int fd, char *buf, int len, int min) { int n, tot; @@ -71,7 +71,7 @@ char *Ps2Names[] = { #define NUM_PS2_NAMES (sizeof (Ps2Names) / sizeof (Ps2Names[0])) -void +static void Ps2Read (int ps2Port, void *closure) { unsigned char buf[3 * 200]; @@ -119,7 +119,7 @@ Ps2Read (int ps2Port, void *closure) int Ps2InputType; -int +static int Ps2Init (void) { int i; @@ -141,7 +141,7 @@ Ps2Init (void) return n; } -void +static void Ps2Fini (void) { KdUnregisterFds (Ps2InputType, TRUE); |