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
c77054e5
Commit
c77054e5
authored
Oct 02, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/home/rmk/linux-2.6-arm
parents
75f8426c
2c3a0540
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
12 deletions
+15
-12
arch/arm/mm/abort-ev6.S
arch/arm/mm/abort-ev6.S
+5
-0
drivers/net/arm/am79c961a.c
drivers/net/arm/am79c961a.c
+10
-12
No files found.
arch/arm/mm/abort-ev6.S
View file @
c77054e5
...
...
@@ -20,6 +20,11 @@
*/
.
align
5
ENTRY
(
v6_early_abort
)
#ifdef CONFIG_CPU_MPCORE
clrex
#else
strex
r0
,
r1
,
[
sp
]
@
Clear
the
exclusive
monitor
#endif
mrc
p15
,
0
,
r1
,
c5
,
c0
,
0
@
get
FSR
mrc
p15
,
0
,
r0
,
c6
,
c0
,
0
@
get
FAR
/*
...
...
drivers/net/arm/am79c961a.c
View file @
c77054e5
...
...
@@ -15,16 +15,13 @@
*/
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/in.h>
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/crc32.h>
...
...
@@ -33,7 +30,6 @@
#include <asm/system.h>
#include <asm/irq.h>
#include <asm/io.h>
#include <asm/dma.h>
#define TX_BUFFERS 15
#define RX_BUFFERS 25
...
...
@@ -85,7 +81,7 @@ static inline unsigned short read_ireg(u_long base_addr, u_int reg)
u_short
v
;
__asm__
(
"str%?h %1, [%2] @ NAT_RAP
\n\t
"
"
st
r%?h %0, [%2, #8] @ NET_IDP
\n\t
"
"
ld
r%?h %0, [%2, #8] @ NET_IDP
\n\t
"
:
"=r"
(
v
)
:
"r"
(
reg
),
"r"
(
ISAIO_BASE
+
0x0464
));
return
v
;
...
...
@@ -288,7 +284,7 @@ static void am79c961_timer(unsigned long data)
else
if
(
!
lnkstat
&&
carrier
)
netif_carrier_off
(
dev
);
mod_timer
(
&
priv
->
timer
,
jiffies
+
5
*
HZ
);
mod_timer
(
&
priv
->
timer
,
jiffies
+
msecs_to_jiffies
(
500
)
);
}
/*
...
...
@@ -709,13 +705,9 @@ static int __init am79c961_init(void)
goto
release
;
am79c961_banner
();
printk
(
KERN_INFO
"%s: ether address "
,
dev
->
name
);
/* Retrive and print the ethernet address. */
for
(
i
=
0
;
i
<
6
;
i
++
)
{
for
(
i
=
0
;
i
<
6
;
i
++
)
dev
->
dev_addr
[
i
]
=
inb
(
dev
->
base_addr
+
i
*
2
)
&
0xff
;
printk
(
i
==
5
?
"%02x
\n
"
:
"%02x:"
,
dev
->
dev_addr
[
i
]);
}
spin_lock_init
(
&
priv
->
chip_lock
);
init_timer
(
&
priv
->
timer
);
...
...
@@ -736,8 +728,14 @@ static int __init am79c961_init(void)
#endif
ret
=
register_netdev
(
dev
);
if
(
ret
==
0
)
if
(
ret
==
0
)
{
printk
(
KERN_INFO
"%s: ether address "
,
dev
->
name
);
for
(
i
=
0
;
i
<
6
;
i
++
)
printk
(
i
==
5
?
"%02x
\n
"
:
"%02x:"
,
dev
->
dev_addr
[
i
]);
return
0
;
}
release:
release_region
(
dev
->
base_addr
,
0x18
);
...
...
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