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
11cb3c13
Commit
11cb3c13
authored
Mar 26, 2003
by
Anton Blanchard
Browse files
Options
Browse Files
Download
Plain Diff
Merge samba.org:/scratch/anton/linux-2.5
into samba.org:/scratch/anton/tmp3
parents
40ae7bb1
7c35ae8c
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
171 additions
and
81 deletions
+171
-81
drivers/char/cyclades.c
drivers/char/cyclades.c
+2
-4
fs/eventpoll.c
fs/eventpoll.c
+161
-73
include/linux/eventpoll.h
include/linux/eventpoll.h
+4
-1
sound/oss/mad16.c
sound/oss/mad16.c
+3
-2
sound/oss/sound_config.h
sound/oss/sound_config.h
+1
-1
No files found.
drivers/char/cyclades.c
View file @
11cb3c13
...
@@ -12,7 +12,7 @@ static char rcsid[] =
...
@@ -12,7 +12,7 @@ static char rcsid[] =
*
*
* Initially written by Randolph Bentson <bentson@grieg.seaslug.org>.
* Initially written by Randolph Bentson <bentson@grieg.seaslug.org>.
* Modified and maintained by Marcio Saito <marcio@cyclades.com>.
* Modified and maintained by Marcio Saito <marcio@cyclades.com>.
* Currently maintained by
Ivan Passos <ivan
@cyclades.com>.
* Currently maintained by
Henrique Gobbi <henrique.gobbi
@cyclades.com>.
*
*
* For Technical support and installation problems, please send e-mail
* For Technical support and installation problems, please send e-mail
* to support@cyclades.com.
* to support@cyclades.com.
...
@@ -883,9 +883,7 @@ static void cyz_poll(unsigned long);
...
@@ -883,9 +883,7 @@ static void cyz_poll(unsigned long);
static
long
cyz_polling_cycle
=
CZ_DEF_POLL
;
static
long
cyz_polling_cycle
=
CZ_DEF_POLL
;
static
int
cyz_timeron
=
0
;
static
int
cyz_timeron
=
0
;
static
struct
timer_list
cyz_timerlist
=
{
static
struct
timer_list
cyz_timerlist
=
TIMER_INITIALIZER
(
cyz_poll
,
0
,
0
);
.
function
=
cyz_poll
};
#else
/* CONFIG_CYZ_INTR */
#else
/* CONFIG_CYZ_INTR */
static
void
cyz_rx_restart
(
unsigned
long
);
static
void
cyz_rx_restart
(
unsigned
long
);
...
...
fs/eventpoll.c
View file @
11cb3c13
This diff is collapsed.
Click to expand it.
include/linux/eventpoll.h
View file @
11cb3c13
/*
/*
* include/linux/eventpoll.h ( Efficent event polling implementation )
* include/linux/eventpoll.h ( Efficent event polling implementation )
* Copyright (C) 2001,...,200
2
Davide Libenzi
* Copyright (C) 2001,...,200
3
Davide Libenzi
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* it under the terms of the GNU General Public License as published by
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
#define EPOLL_CTL_DEL 2
#define EPOLL_CTL_DEL 2
#define EPOLL_CTL_MOD 3
#define EPOLL_CTL_MOD 3
/* Set the Edge Triggered behaviour for the target file descriptor */
#define EPOLLET (1 << 31)
struct
epoll_event
{
struct
epoll_event
{
__u32
events
;
__u32
events
;
__u64
data
;
__u64
data
;
...
...
sound/oss/mad16.c
View file @
11cb3c13
...
@@ -99,7 +99,7 @@ static int debug = 0; /* debugging output */
...
@@ -99,7 +99,7 @@ static int debug = 0; /* debugging output */
#ifdef DDB
#ifdef DDB
#undef DDB
#undef DDB
#endif
#endif
#define DDB(x)
{if (debug) x;}
#define DDB(x)
do {if (debug) x;} while (0)
static
unsigned
char
mad_read
(
int
port
)
static
unsigned
char
mad_read
(
int
port
)
{
{
...
@@ -278,7 +278,8 @@ static int __init detect_mad16(void)
...
@@ -278,7 +278,8 @@ static int __init detect_mad16(void)
}
}
for
(
i
=
0xf8d
;
i
<=
0xf98
;
i
++
)
for
(
i
=
0xf8d
;
i
<=
0xf98
;
i
++
)
if
(
!
c924pnp
)
if
(
!
c924pnp
)
DDB
(
printk
(
"Port %0x (init value) = %0x
\n
"
,
i
,
mad_read
(
i
)))
else
DDB
(
printk
(
"Port %0x (init value) = %0x
\n
"
,
i
,
mad_read
(
i
)));
else
DDB
(
printk
(
"Port %0x (init value) = %0x
\n
"
,
i
-
0x80
,
mad_read
(
i
)));
DDB
(
printk
(
"Port %0x (init value) = %0x
\n
"
,
i
-
0x80
,
mad_read
(
i
)));
if
(
board_type
==
C930
)
if
(
board_type
==
C930
)
...
...
sound/oss/sound_config.h
View file @
11cb3c13
...
@@ -137,7 +137,7 @@ static inline int translate_mode(struct file *file)
...
@@ -137,7 +137,7 @@ static inline int translate_mode(struct file *file)
#endif
#endif
#ifndef DDB
#ifndef DDB
#define DDB(x)
{}
#define DDB(x)
do {} while (0)
#endif
#endif
#ifndef MDB
#ifndef MDB
...
...
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