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
6996a8ab
Commit
6996a8ab
authored
Jun 09, 2002
by
Martin Dalecki
Committed by
Linus Torvalds
Jun 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] kill warnings 12/19
The irda people use shreddy editors saga continues.
parent
67b5d6ea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
141 additions
and
152 deletions
+141
-152
net/irda/irlap.c
net/irda/irlap.c
+141
-152
No files found.
net/irda/irlap.c
View file @
6996a8ab
...
...
@@ -82,7 +82,7 @@ int __init irlap_init(void)
/* Allocate master array */
irlap
=
hashbin_new
(
HB_LOCAL
);
if
(
irlap
==
NULL
)
{
ERROR
(
__FUNCTION__
"(), can't allocate irlap hashbin!
\n
"
);
ERROR
(
"%s: can't allocate irlap hashbin!
\n
"
,
__FUNCTION__
);
return
-
ENOMEM
;
}
...
...
@@ -477,7 +477,7 @@ void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason)
reason
,
NULL
);
break
;
default:
ERROR
(
__FUNCTION__
"(), Unknown reason %d
\n
"
,
reason
);
ERROR
(
"%s: Unknown reason %d
\n
"
,
__FUNCTION__
,
reason
);
}
}
...
...
@@ -599,9 +599,6 @@ void irlap_discovery_indication(struct irlap_cb *self, discovery_t *discovery)
/*
* Function irlap_status_indication (quality_of_link)
*
*
*
*/
void
irlap_status_indication
(
struct
irlap_cb
*
self
,
int
quality_of_link
)
{
...
...
@@ -621,9 +618,6 @@ void irlap_status_indication(struct irlap_cb *self, int quality_of_link)
/*
* Function irlap_reset_indication (void)
*
*
*
*/
void
irlap_reset_indication
(
struct
irlap_cb
*
self
)
{
...
...
@@ -640,9 +634,6 @@ void irlap_reset_indication(struct irlap_cb *self)
/*
* Function irlap_reset_confirm (void)
*
*
*
*/
void
irlap_reset_confirm
(
void
)
{
...
...
@@ -926,7 +917,6 @@ void irlap_init_qos_capabilities(struct irlap_cb *self,
* Function irlap_apply_default_connection_parameters (void, now)
*
* Use the default connection and transmission parameters
*
*/
void
irlap_apply_default_connection_parameters
(
struct
irlap_cb
*
self
)
{
...
...
@@ -1180,4 +1170,3 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len)
}
#endif
/* CONFIG_PROC_FS */
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