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
Kirill Smelkov
linux
Commits
fbf464a2
Commit
fbf464a2
authored
Feb 14, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.arm.linux.org.uk/linux-2.6-rmk
into home.osdl.org:/home/torvalds/v2.5/linux
parents
17042cbd
a7d78a46
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
arch/arm/common/amba.c
arch/arm/common/amba.c
+1
-1
arch/arm/kernel/time.c
arch/arm/kernel/time.c
+1
-1
arch/arm/mach-sa1100/generic.c
arch/arm/mach-sa1100/generic.c
+5
-0
arch/arm/mm/Kconfig
arch/arm/mm/Kconfig
+2
-2
No files found.
arch/arm/common/amba.c
View file @
fbf464a2
...
@@ -50,7 +50,7 @@ static int amba_hotplug(struct device *dev, char **envp, int nr_env, char *buf,
...
@@ -50,7 +50,7 @@ static int amba_hotplug(struct device *dev, char **envp, int nr_env, char *buf,
if
(
nr_env
<
2
)
if
(
nr_env
<
2
)
return
-
ENOMEM
;
return
-
ENOMEM
;
snprintf
(
buf
,
bufsz
,
"AMBA_ID=%08
l
x"
,
pcdev
->
periphid
);
snprintf
(
buf
,
bufsz
,
"AMBA_ID=%08x"
,
pcdev
->
periphid
);
*
envp
++
=
buf
;
*
envp
++
=
buf
;
*
envp
++
=
NULL
;
*
envp
++
=
NULL
;
return
0
;
return
0
;
...
...
arch/arm/kernel/time.c
View file @
fbf464a2
...
@@ -116,7 +116,7 @@ static inline void do_set_rtc(void)
...
@@ -116,7 +116,7 @@ static inline void do_set_rtc(void)
return
;
return
;
if
(
next_rtc_update
&&
if
(
next_rtc_update
&&
time_before
(
xtime
.
tv_sec
,
next_rtc_update
))
time_before
(
(
unsigned
long
)
xtime
.
tv_sec
,
next_rtc_update
))
return
;
return
;
if
(
xtime
.
tv_nsec
<
500000000
-
((
unsigned
)
tick_nsec
>>
1
)
&&
if
(
xtime
.
tv_nsec
<
500000000
-
((
unsigned
)
tick_nsec
>>
1
)
&&
...
...
arch/arm/mach-sa1100/generic.c
View file @
fbf464a2
...
@@ -159,9 +159,14 @@ static struct resource sa11x0mcp_resources[] = {
...
@@ -159,9 +159,14 @@ static struct resource sa11x0mcp_resources[] = {
},
},
};
};
static
u64
sa11x0mcp_dma_mask
=
0xffffffffUL
;
static
struct
platform_device
sa11x0mcp_device
=
{
static
struct
platform_device
sa11x0mcp_device
=
{
.
name
=
"sa11x0-mcp"
,
.
name
=
"sa11x0-mcp"
,
.
id
=
0
,
.
id
=
0
,
.
dev
=
{
.
dma_mask
=
&
sa11x0mcp_dma_mask
,
},
.
num_resources
=
ARRAY_SIZE
(
sa11x0mcp_resources
),
.
num_resources
=
ARRAY_SIZE
(
sa11x0mcp_resources
),
.
resource
=
sa11x0mcp_resources
,
.
resource
=
sa11x0mcp_resources
,
};
};
...
...
arch/arm/mm/Kconfig
View file @
fbf464a2
...
@@ -291,8 +291,8 @@ config ARM_THUMB
...
@@ -291,8 +291,8 @@ config ARM_THUMB
depends on CPU_ARM720T || CPU_ARM920T || CPU_ARM922T || CPU_ARM926T || CPU_ARM1020 || CPU_ARM1020E || CPU_ARM1022 || CPU_ARM1026 || CPU_XSCALE
depends on CPU_ARM720T || CPU_ARM920T || CPU_ARM922T || CPU_ARM926T || CPU_ARM1020 || CPU_ARM1020E || CPU_ARM1022 || CPU_ARM1026 || CPU_XSCALE
default y
default y
help
help
Say Y if you want to
have kernel support for ARM Thumb instructions,
Say Y if you want to
include kernel support for running user space
fault handlers, and system call
s.
Thumb binarie
s.
The Thumb instruction set is a compressed form of the standard ARM
The Thumb instruction set is a compressed form of the standard ARM
instruction set resulting in smaller binaries at the expense of
instruction set resulting in smaller binaries at the expense of
...
...
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