Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Jack Humbert
reform-boundary-uboot
Commits
6fde84a4
Commit
6fde84a4
authored
17 years ago
by
TsiChung Liew
Committed by
Stefan Roese
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Moved sync() from board file to include/asm-m68k/io.h
Signed-off-by:
TsiChungLiew
<
Tsi-Chung.Liew@freescale.com
>
parent
9e737d84
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
board/freescale/m5329evb/m5329evb.c
+0
-7
0 additions, 7 deletions
board/freescale/m5329evb/m5329evb.c
include/asm-m68k/io.h
+7
-0
7 additions, 0 deletions
include/asm-m68k/io.h
with
7 additions
and
7 deletions
board/freescale/m5329evb/m5329evb.c
+
0
−
7
View file @
6fde84a4
...
@@ -87,10 +87,3 @@ int testdram(void)
...
@@ -87,10 +87,3 @@ int testdram(void)
return
(
0
);
return
(
0
);
}
}
#ifdef CFG_FLASH_CFI
void
sync
(
void
)
{
/* This sync function is PowerPC intruction,
coldfire does not have this instruction. Dummy function */
}
#endif
/* CFG_FLASH_CFI */
This diff is collapsed.
Click to expand it.
include/asm-m68k/io.h
+
7
−
0
View file @
6fde84a4
...
@@ -211,4 +211,11 @@ extern inline void out_be32(volatile unsigned *addr, int val)
...
@@ -211,4 +211,11 @@ extern inline void out_be32(volatile unsigned *addr, int val)
*
addr
=
val
;
*
addr
=
val
;
}
}
static
inline
void
sync
(
void
)
{
/* This sync function is for PowerPC or other architecture instruction
* ColdFire does not have this instruction. Dummy function, added for
* compatibility (CFI driver)
*/
}
#endif
/* __ASM_M68K_IO_H__ */
#endif
/* __ASM_M68K_IO_H__ */
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