Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
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-2.6.23
Commits
498f3eb7
Commit
498f3eb7
authored
Oct 18, 2005
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: OMAP: Make sure omap_gpio_init is called for all boards
Make sure omap_gpio_init is called for all boards
parent
67ad0644
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
0 deletions
+17
-0
arch/arm/mach-omap1/board-generic.c
arch/arm/mach-omap1/board-generic.c
+3
-0
arch/arm/mach-omap1/board-innovator.c
arch/arm/mach-omap1/board-innovator.c
+2
-0
arch/arm/mach-omap1/board-osk.c
arch/arm/mach-omap1/board-osk.c
+2
-0
arch/arm/mach-omap1/board-palmte.c
arch/arm/mach-omap1/board-palmte.c
+3
-0
arch/arm/mach-omap1/board-perseus2.c
arch/arm/mach-omap1/board-perseus2.c
+2
-0
arch/arm/mach-omap2/board-generic.c
arch/arm/mach-omap2/board-generic.c
+3
-0
arch/arm/mach-omap2/board-h4.c
arch/arm/mach-omap2/board-h4.c
+2
-0
No files found.
arch/arm/mach-omap1/board-generic.c
View file @
498f3eb7
...
...
@@ -28,9 +28,12 @@
#include <asm/arch/board.h>
#include <asm/arch/common.h>
extern
int
omap_gpio_init
(
void
);
static
void
__init
omap_generic_init_irq
(
void
)
{
omap_init_irq
();
omap_gpio_init
();
}
/* assume no Mini-AB port */
...
...
arch/arm/mach-omap1/board-innovator.c
View file @
498f3eb7
...
...
@@ -36,6 +36,8 @@
#include <asm/arch/usb.h>
#include <asm/arch/common.h>
extern
int
omap_gpio_init
(
void
);
static
struct
mtd_partition
innovator_partitions
[]
=
{
/* bootloader (U-Boot, etc) in first sector */
{
...
...
arch/arm/mach-omap1/board-osk.c
View file @
498f3eb7
...
...
@@ -46,6 +46,8 @@
#include <asm/arch/tc.h>
#include <asm/arch/common.h>
extern
int
omap_gpio_init
(
void
);
static
struct
mtd_partition
osk_partitions
[]
=
{
/* bootloader (U-Boot, etc) in first sector */
{
...
...
arch/arm/mach-omap1/board-palmte.c
View file @
498f3eb7
...
...
@@ -32,9 +32,12 @@
#include <asm/arch/common.h>
#include <asm/hardware/clock.h>
extern
int
omap_gpio_init
(
void
);
static
void
__init
omap_generic_init_irq
(
void
)
{
omap_init_irq
();
omap_gpio_init
();
}
static
struct
omap_usb_config
palmte_usb_config
__initdata
=
{
...
...
arch/arm/mach-omap1/board-perseus2.c
View file @
498f3eb7
...
...
@@ -31,6 +31,8 @@
#include <asm/arch/common.h>
#include <asm/arch/board.h>
extern
int
omap_gpio_init
(
void
);
static
struct
resource
smc91x_resources
[]
=
{
[
0
]
=
{
.
start
=
H2P2_DBG_FPGA_ETHR_START
,
/* Physical */
...
...
arch/arm/mach-omap2/board-generic.c
View file @
498f3eb7
...
...
@@ -31,9 +31,12 @@
#include <asm/arch/board.h>
#include <asm/arch/common.h>
extern
int
omap_gpio_init
(
void
);
static
void
__init
omap_generic_init_irq
(
void
)
{
omap_init_irq
();
omap_gpio_init
();
}
static
struct
omap_uart_config
generic_uart_config
__initdata
=
{
...
...
arch/arm/mach-omap2/board-h4.c
View file @
498f3eb7
...
...
@@ -34,6 +34,8 @@
#include <asm/io.h>
#include <asm/delay.h>
extern
int
omap_gpio_init
(
void
);
static
struct
mtd_partition
h4_partitions
[]
=
{
/* bootloader (U-Boot, etc) in first sector */
{
...
...
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