Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SPARC U-Boot Custodian Tree
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
U-Boot
Custodians
SPARC U-Boot Custodian Tree
Commits
ba999c53
Commit
ba999c53
authored
Oct 20, 2006
by
Wolfgang Denk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup compile warnings. Prepare for release 1.1.5
parent
f836e414
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
CHANGELOG
CHANGELOG
+3
-1
Makefile
Makefile
+1
-1
board/ep82xxm/ep82xxm.c
board/ep82xxm/ep82xxm.c
+0
-2
common/miiphybb.c
common/miiphybb.c
+3
-3
cpu/ppc4xx/cpu.c
cpu/ppc4xx/cpu.c
+3
-3
No files found.
CHANGELOG
View file @
ba999c53
======================================================================
Changes
since U-Boot 1.1.4
:
Changes
for U-Boot 1.1.5
:
======================================================================
* Cleanup compile warnings. Prepare for release 1.1.5
* Fix compile problem in include/configs/ep82xxm.h
(must have never been tested before!)
...
...
Makefile
View file @
ba999c53
...
...
@@ -23,7 +23,7 @@
VERSION
=
1
PATCHLEVEL
=
1
SUBLEVEL
=
4
SUBLEVEL
=
5
EXTRAVERSION
=
U_BOOT_VERSION
=
$(VERSION)
.
$(PATCHLEVEL)
.
$(SUBLEVEL)$(EXTRAVERSION)
VERSION_FILE
=
$(obj)
include/version_autogenerated.h
...
...
board/ep82xxm/ep82xxm.c
View file @
ba999c53
...
...
@@ -227,8 +227,6 @@ long int initdram(int board_type)
#ifndef CFG_RAMBOOT
volatile
immap_t
*
immap
=
(
immap_t
*
)
CFG_IMMR
;
volatile
memctl8260_t
*
memctl
=
&
immap
->
im_memctl
;
vu_char
*
ramaddr
=
(
vu_char
*
)
CFG_SDRAM_BASE
;
uchar
c
=
0xFF
;
uint
psdmr
=
CFG_PSDMR
;
int
i
;
...
...
common/miiphybb.c
View file @
ba999c53
...
...
@@ -41,7 +41,7 @@
static
void
miiphy_pre
(
char
read
,
unsigned
char
addr
,
unsigned
char
reg
)
{
int
j
;
/* counter */
#if
ndef CONFIG_EP8248
#if
!(defined(CONFIG_EP8248) || defined(CONFIG_EP82XXM))
volatile
ioport_t
*
iop
=
ioport_addr
((
immap_t
*
)
CFG_IMMR
,
MDIO_PORT
);
#endif
...
...
@@ -126,7 +126,7 @@ int bb_miiphy_read (char *devname, unsigned char addr,
{
short
rdreg
;
/* register working value */
int
j
;
/* counter */
#if
ndef CONFIG_EP8248
#if
!(defined(CONFIG_EP8248) || defined(CONFIG_EP82XXM))
volatile
ioport_t
*
iop
=
ioport_addr
((
immap_t
*
)
CFG_IMMR
,
MDIO_PORT
);
#endif
...
...
@@ -193,7 +193,7 @@ int bb_miiphy_write (char *devname, unsigned char addr,
unsigned
char
reg
,
unsigned
short
value
)
{
int
j
;
/* counter */
#if
ndef CONFIG_EP8248
#if
!(defined(CONFIG_EP8248) || defined(CONFIG_EP82XXM))
volatile
ioport_t
*
iop
=
ioport_addr
((
immap_t
*
)
CFG_IMMR
,
MDIO_PORT
);
#endif
...
...
cpu/ppc4xx/cpu.c
View file @
ba999c53
...
...
@@ -190,9 +190,9 @@ int checkcpu (void)
uint
pvr
=
get_pvr
();
ulong
clock
=
gd
->
cpu_clk
;
char
buf
[
32
];
char
addstr
[
64
]
=
""
;
#if !defined(CONFIG_IOP480)
char
addstr
[
64
]
=
""
;
sys_info_t
sys_info
;
puts
(
"CPU: "
);
...
...
@@ -362,8 +362,8 @@ int checkcpu (void)
#if defined(SDR0_PINSTP_SHIFT)
printf
(
" Bootstrap Option %c - "
,
(
char
)
bootstrap_option
()
+
'A'
);
printf
(
"Boot ROM Location %s
\n
"
,
bootstrap_str
[
bootstrap_option
()]);
#endif
#endif
#endif
/* SDR0_PINSTP_SHIFT */
#endif
/* I2C_BOOTROM */
#if defined(CONFIG_PCI)
printf
(
" Internal PCI arbiter %sabled"
,
pci_arbiter_enabled
()
?
"en"
:
"dis"
);
...
...
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