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
nexedi
linux
Commits
bc66f155
Commit
bc66f155
authored
Nov 25, 2002
by
Alan Cox
Committed by
Linus Torvalds
Nov 25, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] update baycom drivers, remove soundmodem deps
parent
954bd821
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
24 deletions
+0
-24
drivers/net/hamradio/baycom_epp.c
drivers/net/hamradio/baycom_epp.c
+0
-24
No files found.
drivers/net/hamradio/baycom_epp.c
View file @
bc66f155
...
...
@@ -54,7 +54,6 @@
#include <linux/kmod.h>
#include <linux/hdlcdrv.h>
#include <linux/baycom.h>
#include <linux/soundmodem.h>
#if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
/* prototypes for ax25_encapsulate and ax25_rebuild_header */
#include <net/ax25.h>
...
...
@@ -1200,7 +1199,6 @@ static int baycom_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
struct
baycom_state
*
bc
;
struct
baycom_ioctl
bi
;
struct
hdlcdrv_ioctl
hi
;
struct
sm_ioctl
si
;
baycom_paranoia_check
(
dev
,
"baycom_ioctl"
,
-
EINVAL
);
bc
=
(
struct
baycom_state
*
)
dev
->
priv
;
...
...
@@ -1208,28 +1206,6 @@ static int baycom_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
return
-
ENOIOCTLCMD
;
if
(
get_user
(
cmd
,
(
int
*
)
ifr
->
ifr_data
))
return
-
EFAULT
;
#ifdef BAYCOM_DEBUG
if
(
cmd
==
BAYCOMCTL_GETDEBUG
)
{
bi
.
data
.
dbg
.
debug1
=
bc
->
ptt_keyed
;
bi
.
data
.
dbg
.
debug2
=
bc
->
debug_vals
.
last_intcnt
;
bi
.
data
.
dbg
.
debug3
=
bc
->
debug_vals
.
last_pllcorr
;
bc
->
debug_vals
.
last_intcnt
=
0
;
if
(
copy_to_user
(
ifr
->
ifr_data
,
&
bi
,
sizeof
(
bi
)))
return
-
EFAULT
;
return
0
;
}
if
(
cmd
==
SMCTL_GETDEBUG
)
{
si
.
data
.
dbg
.
int_rate
=
bc
->
debug_vals
.
last_intcnt
;
si
.
data
.
dbg
.
mod_cycles
=
bc
->
debug_vals
.
mod_cycles
;
si
.
data
.
dbg
.
demod_cycles
=
bc
->
debug_vals
.
demod_cycles
;
si
.
data
.
dbg
.
dma_residue
=
0
;
bc
->
debug_vals
.
mod_cycles
=
bc
->
debug_vals
.
demod_cycles
=
0
;
bc
->
debug_vals
.
last_intcnt
=
0
;
if
(
copy_to_user
(
ifr
->
ifr_data
,
&
si
,
sizeof
(
si
)))
return
-
EFAULT
;
return
0
;
}
#endif
/* BAYCOM_DEBUG */
if
(
copy_from_user
(
&
hi
,
ifr
->
ifr_data
,
sizeof
(
hi
)))
return
-
EFAULT
;
...
...
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