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
a929752c
Commit
a929752c
authored
Sep 07, 2008
by
Russell King
Committed by
Russell King
Sep 07, 2008
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'smc91x' into pxa-viper
parents
57a7a62e
b0dbcf51
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
drivers/net/smc91x.c
drivers/net/smc91x.c
+8
-1
drivers/net/smc91x.h
drivers/net/smc91x.h
+1
-1
include/linux/smc91x.h
include/linux/smc91x.h
+2
-0
No files found.
drivers/net/smc91x.c
View file @
a929752c
...
...
@@ -1520,7 +1520,9 @@ smc_open(struct net_device *dev)
/* Setup the default Register Modes */
lp
->
tcr_cur_mode
=
TCR_DEFAULT
;
lp
->
rcr_cur_mode
=
RCR_DEFAULT
;
lp
->
rpc_cur_mode
=
RPC_DEFAULT
;
lp
->
rpc_cur_mode
=
RPC_DEFAULT
|
lp
->
cfg
.
leda
<<
RPC_LSXA_SHFT
|
lp
->
cfg
.
ledb
<<
RPC_LSXB_SHFT
;
/*
* If we are not using a MII interface, we need to
...
...
@@ -2157,6 +2159,11 @@ static int smc_drv_probe(struct platform_device *pdev)
lp
->
cfg
.
flags
|=
(
nowait
)
?
SMC91X_NOWAIT
:
0
;
}
if
(
!
lp
->
cfg
.
leda
&&
!
lp
->
cfg
.
ledb
)
{
lp
->
cfg
.
leda
=
RPC_LSA_DEFAULT
;
lp
->
cfg
.
ledb
=
RPC_LSB_DEFAULT
;
}
ndev
->
dma
=
(
unsigned
char
)
-
1
;
res
=
platform_get_resource_byname
(
pdev
,
IORESOURCE_MEM
,
"smc91x-regs"
);
...
...
drivers/net/smc91x.h
View file @
a929752c
...
...
@@ -794,7 +794,7 @@ smc_pxa_dma_irq(int dma, void *dummy)
#define RPC_LSB_DEFAULT RPC_LED_FD
#endif
#define RPC_DEFAULT (RPC_ANEG |
(RPC_LSA_DEFAULT << RPC_LSXA_SHFT) | (RPC_LSB_DEFAULT << RPC_LSXB_SHFT) |
RPC_SPEED | RPC_DPLX)
#define RPC_DEFAULT (RPC_ANEG | RPC_SPEED | RPC_DPLX)
/* Bank 0 0x0C is reserved */
...
...
include/linux/smc91x.h
View file @
a929752c
...
...
@@ -18,6 +18,8 @@
struct
smc91x_platdata
{
unsigned
long
flags
;
unsigned
char
leda
;
unsigned
char
ledb
;
};
#endif
/* __SMC91X_H__ */
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