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
dfba7825
Commit
dfba7825
authored
Oct 29, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ISDN: Fix AT+FREV command
This was broken by removing the CVS revision strings.
parent
6afb7be2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
17 deletions
+1
-17
drivers/isdn/i4l/isdn_ttyfax.c
drivers/isdn/i4l/isdn_ttyfax.c
+1
-17
No files found.
drivers/isdn/i4l/isdn_ttyfax.c
View file @
dfba7825
...
...
@@ -18,21 +18,6 @@
#define PARSE_ERROR1 { isdn_tty_fax_modem_result(1, info); return 1; }
static
char
*
isdn_getrev
(
const
char
*
revision
)
{
char
*
rev
;
char
*
p
;
if
((
p
=
strchr
(
revision
,
':'
)))
{
rev
=
p
+
2
;
p
=
strchr
(
rev
,
'$'
);
*--
p
=
0
;
}
else
rev
=
"???"
;
return
rev
;
}
/*
* Fax Class 2 Modem results
*
...
...
@@ -1059,8 +1044,7 @@ isdn_tty_cmd_FCLASS2(char **p, modem_info * info)
#ifdef ISDN_TTY_FAX_STAT_DEBUG
printk
(
KERN_DEBUG
"isdn_tty: FREV?
\n
"
);
#endif
strcpy
(
rss
,
isdn_tty_fax_revision
);
sprintf
(
rs
,
"
\r\n
Rev: %s"
,
isdn_getrev
(
rss
));
sprintf
(
rs
,
"
\r\n
Rev: 1.0"
);
isdn_tty_at_cout
(
rs
,
info
);
return
0
;
}
...
...
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