Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rk3576 Downstream U-Boot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Frattaroli
Rk3576 Downstream U-Boot
Commits
9aa720b1
Commit
9aa720b1
authored
14 years ago
by
Fabio Estevam
Committed by
Albert ARIBAUD
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
mx25: Make the UART port number explicit in its setup function
Signed-off-by:
Fabio Estevam
<
fabio.estevam@freescale.com
>
parent
8640c984
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arch/arm/cpu/arm926ejs/mx25/generic.c
+1
-1
1 addition, 1 deletion
arch/arm/cpu/arm926ejs/mx25/generic.c
board/karo/tx25/tx25.c
+2
-2
2 additions, 2 deletions
board/karo/tx25/tx25.c
with
3 additions
and
3 deletions
arch/arm/cpu/arm926ejs/mx25/generic.c
+
1
−
1
View file @
9aa720b1
...
@@ -145,7 +145,7 @@ int cpu_mmc_init (bd_t * bis)
...
@@ -145,7 +145,7 @@ int cpu_mmc_init (bd_t * bis)
}
}
#ifdef CONFIG_MXC_UART
#ifdef CONFIG_MXC_UART
void
mx25_uart_init_pins
(
void
)
void
mx25_uart
1
_init_pins
(
void
)
{
{
struct
iomuxc_mux_ctl
*
muxctl
;
struct
iomuxc_mux_ctl
*
muxctl
;
struct
iomuxc_pad_ctl
*
padctl
;
struct
iomuxc_pad_ctl
*
padctl
;
...
...
This diff is collapsed.
Click to expand it.
board/karo/tx25/tx25.c
+
2
−
2
View file @
9aa720b1
...
@@ -141,9 +141,9 @@ void tx25_fec_init(void)
...
@@ -141,9 +141,9 @@ void tx25_fec_init(void)
int
board_init
()
int
board_init
()
{
{
#ifdef CONFIG_MXC_UART
#ifdef CONFIG_MXC_UART
extern
void
mx25_uart_init_pins
(
void
);
extern
void
mx25_uart
1
_init_pins
(
void
);
mx25_uart_init_pins
();
mx25_uart
1
_init_pins
();
#endif
#endif
/* board id for linux */
/* board id for linux */
gd
->
bd
->
bi_arch_number
=
MACH_TYPE_TX25
;
gd
->
bd
->
bi_arch_number
=
MACH_TYPE_TX25
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment