Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SPARC U-Boot Custodian Tree
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
U-Boot
Custodians
SPARC U-Boot Custodian Tree
Commits
3e01d75f
Commit
3e01d75f
authored
Oct 09, 2004
by
wdenk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch by Andreas Engel, 16 Aug 2004:
parameter type cleanup for NetSetTimeout()
parent
a5bbcc3c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/net.h
include/net.h
+1
-1
net/net.c
net/net.c
+1
-1
No files found.
include/net.h
View file @
3e01d75f
...
...
@@ -374,7 +374,7 @@ extern uint NetCksum(uchar *, int); /* Calculate the checksum */
/* Set callbacks */
extern
void
NetSetHandler
(
rxhand_f
*
);
/* Set RX packet handler */
extern
void
NetSetTimeout
(
int
,
thand_f
*
);
/* Set timeout handler */
extern
void
NetSetTimeout
(
ulong
,
thand_f
*
);
/* Set timeout handler */
/* Transmit "NetTxPacket" */
extern
void
NetSendPacket
(
volatile
uchar
*
,
int
);
...
...
net/net.c
View file @
3e01d75f
...
...
@@ -585,7 +585,7 @@ NetSetHandler(rxhand_f * f)
void
NetSetTimeout
(
int
iv
,
thand_f
*
f
)
NetSetTimeout
(
ulong
iv
,
thand_f
*
f
)
{
if
(
iv
==
0
)
{
timeHandler
=
(
thand_f
*
)
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