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
af8cdaa6
Commit
af8cdaa6
authored
Nov 25, 2002
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] incorrect flags sizes.
parent
94c766d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
drivers/net/wan/cosa.c
drivers/net/wan/cosa.c
+8
-7
No files found.
drivers/net/wan/cosa.c
View file @
af8cdaa6
...
...
@@ -610,7 +610,8 @@ static void sppp_channel_delete(struct channel_data *chan)
static
int
cosa_sppp_open
(
struct
net_device
*
d
)
{
struct
channel_data
*
chan
=
d
->
priv
;
int
err
,
flags
;
int
err
;
unsigned
long
flags
;
if
(
!
(
chan
->
cosa
->
firmware_status
&
COSA_FW_START
))
{
printk
(
KERN_NOTICE
"%s: start the firmware first (status %d)
\n
"
,
...
...
@@ -681,7 +682,7 @@ static void cosa_sppp_timeout(struct net_device *dev)
static
int
cosa_sppp_close
(
struct
net_device
*
d
)
{
struct
channel_data
*
chan
=
d
->
priv
;
int
flags
;
unsigned
long
flags
;
netif_stop_queue
(
d
);
sppp_close
(
d
);
...
...
@@ -778,7 +779,7 @@ static ssize_t cosa_read(struct file *file,
char
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
DECLARE_WAITQUEUE
(
wait
,
current
);
int
flags
;
unsigned
long
flags
;
struct
channel_data
*
chan
=
(
struct
channel_data
*
)
file
->
private_data
;
struct
cosa_data
*
cosa
=
chan
->
cosa
;
char
*
kbuf
;
...
...
@@ -855,7 +856,7 @@ static ssize_t cosa_write(struct file *file,
DECLARE_WAITQUEUE
(
wait
,
current
);
struct
channel_data
*
chan
=
(
struct
channel_data
*
)
file
->
private_data
;
struct
cosa_data
*
cosa
=
chan
->
cosa
;
unsigned
int
flags
;
unsigned
long
flags
;
char
*
kbuf
;
if
(
!
(
cosa
->
firmware_status
&
COSA_FW_START
))
{
...
...
@@ -1242,7 +1243,7 @@ static void cosa_disable_rx(struct channel_data *chan)
static
int
cosa_start_tx
(
struct
channel_data
*
chan
,
char
*
buf
,
int
len
)
{
struct
cosa_data
*
cosa
=
chan
->
cosa
;
int
flags
;
unsigned
long
flags
;
#ifdef DEBUG_DATA
int
i
;
...
...
@@ -1268,7 +1269,7 @@ static int cosa_start_tx(struct channel_data *chan, char *buf, int len)
static
void
put_driver_status
(
struct
cosa_data
*
cosa
)
{
unsigned
flags
=
0
;
unsigned
long
flags
;
int
status
;
spin_lock_irqsave
(
&
cosa
->
lock
,
flags
);
...
...
@@ -1336,7 +1337,7 @@ static void put_driver_status_nolock(struct cosa_data *cosa)
*/
static
void
cosa_kick
(
struct
cosa_data
*
cosa
)
{
unsigned
flags
,
flags1
;
unsigned
long
flags
,
flags1
;
char
*
s
=
"(probably) IRQ"
;
if
(
test_bit
(
RXBIT
,
&
cosa
->
rxtx
))
...
...
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