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
3fb7d3d2
Commit
3fb7d3d2
authored
Feb 13, 2004
by
François Romieu
Committed by
David S. Miller
Feb 13, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IRDA]: In stir4200 driver, defer netif_start_queue() until device opening succeeds.
parent
38362491
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/net/irda/stir4200.c
drivers/net/irda/stir4200.c
+2
-2
No files found.
drivers/net/irda/stir4200.c
View file @
3fb7d3d2
...
...
@@ -950,8 +950,6 @@ static int stir_net_open(struct net_device *netdev)
}
}
netif_start_queue
(
netdev
);
/*
* Now that everything should be initialized properly,
* Open new IrLAP layer instance to take care of us...
...
...
@@ -974,6 +972,8 @@ static int stir_net_open(struct net_device *netdev)
goto
err_out4
;
}
netif_start_queue
(
netdev
);
return
0
;
err_out4:
...
...
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