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
caa148f6
Commit
caa148f6
authored
Oct 29, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://gkernel.bkbits.net/libata-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
680d3c72
e28e5dc3
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
131 additions
and
102 deletions
+131
-102
MAINTAINERS
MAINTAINERS
+2
-2
drivers/net/8390.c
drivers/net/8390.c
+1
-1
drivers/net/amd8111e.c
drivers/net/amd8111e.c
+123
-95
drivers/net/amd8111e.h
drivers/net/amd8111e.h
+2
-1
drivers/net/smc91x.h
drivers/net/smc91x.h
+2
-2
drivers/net/via-rhine.c
drivers/net/via-rhine.c
+1
-1
No files found.
MAINTAINERS
View file @
caa148f6
...
...
@@ -1110,8 +1110,8 @@ P: John Ronciak
M: john.ronciak@intel.com
P: Ganesh Venkatesan
M: ganesh.venkatesan@intel.com
P:
Scott Feldman
M:
scott.feldman
@intel.com
P:
Jesse Brandeburg
M:
jesse.brandeburg
@intel.com
W: http://sourceforge.net/projects/e1000/
S: Supported
...
...
drivers/net/8390.c
View file @
caa148f6
...
...
@@ -813,7 +813,7 @@ static void ei_rx_overrun(struct net_device *dev)
* We wait at least 10ms.
*/
udelay
(
10
*
100
0
);
mdelay
(
1
0
);
/*
* Reset RBCR[01] back to zero as per magic incantation.
...
...
drivers/net/amd8111e.c
View file @
caa148f6
This diff is collapsed.
Click to expand it.
drivers/net/amd8111e.h
View file @
caa148f6
...
...
@@ -649,7 +649,6 @@ typedef enum {
#define TCC_MASK 0x0003
/* driver ioctl parameters */
#define PHY_ID 0x01
/* currently it is fixed */
#define AMD8111E_REG_DUMP_LEN 13*sizeof(u32)
/* crc generator constants */
...
...
@@ -777,6 +776,8 @@ struct amd8111e_priv{
int
options
;
/* Options enabled/disabled for the device */
unsigned
long
ext_phy_option
;
int
ext_phy_addr
;
u32
ext_phy_id
;
struct
amd8111e_link_config
link_config
;
int
pm_cap
;
...
...
drivers/net/smc91x.h
View file @
caa148f6
...
...
@@ -245,7 +245,7 @@ smc_pxa_dma_insl(u_long ioaddr, u_long physaddr, int reg, int dma,
while
(
!
(
DCSR
(
dma
)
&
DCSR_STOPSTATE
))
cpu_relax
();
DCSR
(
dma
)
=
0
;
dma_unmap_single
(
NULL
,
dmabuf
,
len
,
PCI_DMA_FROM
DEVICE
);
dma_unmap_single
(
NULL
,
dmabuf
,
len
,
DMA_FROM_
DEVICE
);
}
#endif
...
...
@@ -273,7 +273,7 @@ smc_pxa_dma_insw(u_long ioaddr, u_long physaddr, int reg, int dma,
}
len
*=
2
;
dmabuf
=
dma_map_single
(
NULL
,
buf
,
len
,
PCI_DMA_FROM
DEVICE
);
dmabuf
=
dma_map_single
(
NULL
,
buf
,
len
,
DMA_FROM_
DEVICE
);
DCSR
(
dma
)
=
DCSR_NODESC
;
DTADR
(
dma
)
=
dmabuf
;
DSADR
(
dma
)
=
physaddr
+
reg
;
...
...
drivers/net/via-rhine.c
View file @
caa148f6
...
...
@@ -627,7 +627,7 @@ static void rhine_chip_reset(struct net_device *dev)
}
#ifdef USE_MMIO
static
void
__devinit
enable_mmio
(
long
pioaddr
,
u32
quirks
)
static
void
enable_mmio
(
long
pioaddr
,
u32
quirks
)
{
int
n
;
if
(
quirks
&
rqRhineI
)
{
...
...
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