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
f33a62c5
Commit
f33a62c5
authored
Sep 23, 2002
by
Jean Tourrilhes
Committed by
Linus Torvalds
Sep 23, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
64-bitness fixes for IrDA irlan protocol code
(fixing the new hashbin code)
parent
fb4cab96
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
net/irda/irlan/irlan_common.c
net/irda/irlan/irlan_common.c
+2
-1
net/irda/irnet/irnet.h
net/irda/irnet/irnet.h
+1
-1
net/irda/irnet/irnet_irda.h
net/irda/irnet/irnet_irda.h
+1
-1
No files found.
net/irda/irlan/irlan_common.c
View file @
f33a62c5
...
...
@@ -64,7 +64,8 @@
* Master structure
*/
hashbin_t
*
irlan
=
NULL
;
static
__u32
ckey
,
skey
;
static
void
*
ckey
;
static
void
*
skey
;
/* Module parameters */
static
int
eth
=
0
;
/* Use "eth" or "irlan" name for devices */
...
...
net/irda/irnet/irnet.h
View file @
f33a62c5
...
...
@@ -434,7 +434,7 @@ typedef struct irnet_socket
/* ------------------- IrLMP and IrIAS part ------------------- */
/* Used for IrDA Discovery and socket name resolution */
__u32
ckey
;
/* IrLMP client handle */
void
*
ckey
;
/* IrLMP client handle */
__u16
mask
;
/* Hint bits mask (filter discov.)*/
int
nslots
;
/* Number of slots for discovery */
...
...
net/irda/irnet/irnet_irda.h
View file @
f33a62c5
...
...
@@ -53,7 +53,7 @@ typedef struct irnet_root
* reentrant, beware... So, we blindly protect all with spinlock */
/* Handle for the hint bit advertised in IrLMP */
__u32
skey
;
void
*
skey
;
/* Server socket part */
struct
ias_object
*
ias_obj
;
/* Our service name + lsap in IAS */
...
...
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