mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-30 19:11:37 +00:00
LinkStation: fix compiler warning, add a maintainer
out_8 wants a pointer to an unsigned as the first argument. Add a maintainer for Linkstation boards. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
This commit is contained in:
parent
c71abba3cb
commit
db9084de28
2 changed files with 5 additions and 1 deletions
|
@ -408,6 +408,10 @@ John Zhan <zhanz@sinovee.com>
|
||||||
|
|
||||||
svm_sc8xx MPC8xx
|
svm_sc8xx MPC8xx
|
||||||
|
|
||||||
|
Guennadi Liakhovetski <g.liakhovetski@gmx.de>
|
||||||
|
|
||||||
|
linkstation MPC8241
|
||||||
|
|
||||||
-------------------------------------------------------------------------
|
-------------------------------------------------------------------------
|
||||||
|
|
||||||
Unknown / orphaned boards:
|
Unknown / orphaned boards:
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
/*--------------------------------------------------------------*/
|
/*--------------------------------------------------------------*/
|
||||||
static inline void miconCntl_SendUart(unsigned char dat)
|
static inline void miconCntl_SendUart(unsigned char dat)
|
||||||
{
|
{
|
||||||
out_8((char *)AVR_PORT, dat);
|
out_8((unsigned char *)AVR_PORT, dat);
|
||||||
mdelay(1);
|
mdelay(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue