Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
238523e1
Commit
238523e1
authored
Dec 12, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'upstream-fixes' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
parents
1ff80389
016cc850
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
drivers/net/pcnet32.c
drivers/net/pcnet32.c
+0
-5
drivers/net/sk98lin/skge.c
drivers/net/sk98lin/skge.c
+2
-2
No files found.
drivers/net/pcnet32.c
View file @
238523e1
...
...
@@ -1251,12 +1251,7 @@ pcnet32_probe1(unsigned long ioaddr, int shared, struct pci_dev *pdev)
if
(
memcmp
(
promaddr
,
dev
->
dev_addr
,
6
)
||
!
is_valid_ether_addr
(
dev
->
dev_addr
))
{
#ifndef __powerpc__
if
(
is_valid_ether_addr
(
promaddr
))
{
#else
if
(
!
is_valid_ether_addr
(
dev
->
dev_addr
)
&&
is_valid_ether_addr
(
promaddr
))
{
#endif
if
(
pcnet32_debug
&
NETIF_MSG_PROBE
)
{
printk
(
" warning: CSR address invalid,
\n
"
);
printk
(
KERN_INFO
" using instead PROM address of"
);
...
...
drivers/net/sk98lin/skge.c
View file @
238523e1
...
...
@@ -818,7 +818,7 @@ uintptr_t VNextDescr; /* the virtual bus address of the next descriptor */
/* set the pointers right */
pDescr
->
VNextRxd
=
VNextDescr
&
0xffffffffULL
;
pDescr
->
pNextRxd
=
pNextDescr
;
pDescr
->
TcpSumStarts
=
0
;
if
(
!
IsTx
)
pDescr
->
TcpSumStarts
=
ETH_HLEN
<<
16
|
ETH_HLEN
;
/* advance one step */
pPrevDescr
=
pDescr
;
...
...
@@ -2169,7 +2169,7 @@ rx_start:
}
/* frame > SK_COPY_TRESHOLD */
#ifdef USE_SK_RX_CHECKSUM
pMsg
->
csum
=
pRxd
->
TcpSums
;
pMsg
->
csum
=
pRxd
->
TcpSums
&
0xffff
;
pMsg
->
ip_summed
=
CHECKSUM_HW
;
#else
pMsg
->
ip_summed
=
CHECKSUM_NONE
;
...
...
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