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
d14d4021
Commit
d14d4021
authored
Feb 12, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://bk.arm.linux.org.uk/linux-2.6-rmk
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
3bf34bc3
b1731965
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
8 deletions
+6
-8
arch/arm/mach-sa1100/badge4.c
arch/arm/mach-sa1100/badge4.c
+2
-3
arch/arm/mach-sa1100/shannon.c
arch/arm/mach-sa1100/shannon.c
+4
-2
arch/arm/mach-shark/irq.c
arch/arm/mach-shark/irq.c
+0
-3
No files found.
arch/arm/mach-sa1100/badge4.c
View file @
d14d4021
...
...
@@ -57,7 +57,7 @@ static struct platform_device sa1111_device = {
.
name
=
"sa1111"
,
.
id
=
0
,
.
dev
=
{
.
dma_mask
=
&
sa1111_dmamask
;
.
dma_mask
=
&
sa1111_dmamask
,
.
coherent_dma_mask
=
0xffffffff
,
},
.
num_resources
=
ARRAY_SIZE
(
sa1111_resources
),
...
...
@@ -212,8 +212,7 @@ static int __init badge4_init(void)
/* maybe turn on 5v0 from the start */
badge4_set_5V
(
BADGE4_5V_INITIALLY
,
five_v_on
);
sa11x0_set_flash_data
(
badge4_flash_data
,
badge4_flash_resources
,
ARRAY_SIZE
(
badge4_flash_resources
);
sa11x0_set_flash_data
(
&
badge4_flash_data
,
&
badge4_flash_resource
,
1
);
return
0
;
}
...
...
arch/arm/mach-sa1100/shannon.c
View file @
d14d4021
...
...
@@ -2,15 +2,17 @@
* linux/arch/arm/mach-sa1100/shannon.c
*/
#include <linux/config.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/tty.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <asm/hardware.h>
#include <asm/mach-types.h>
#include <asm/setup.h>
#include <asm/irq.h>
#include <asm/mach/arch.h>
#include <asm/mach/flash.h>
...
...
@@ -52,7 +54,7 @@ static struct resource shannon_flash_resource = {
static
void
__init
shannon_init
(
void
)
{
sa11x0_set_flash_data
(
&
shannon_flash_data
,
shannon_flash_resource
,
1
);
sa11x0_set_flash_data
(
&
shannon_flash_data
,
&
shannon_flash_resource
,
1
);
}
static
void
__init
shannon_map_io
(
void
)
...
...
arch/arm/mach-shark/irq.c
View file @
d14d4021
...
...
@@ -103,10 +103,7 @@ void __init shark_init_irq(void)
//request_region(0xA0,0x2,"pic2");
cascade
.
handler
=
bogus_int
;
cascade
.
flags
=
0
;
cascade
.
name
=
"cascade"
;
cascade
.
next
=
NULL
;
cascade
.
dev_id
=
NULL
;
setup_irq
(
2
,
&
cascade
);
}
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