]> git.sur5r.net Git - u-boot/commitdiff
LinkStation: fix compiler warning, add a maintainer
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Mon, 28 Apr 2008 12:35:57 +0000 (14:35 +0200)
committerWolfgang Denk <wd@denx.de>
Mon, 28 Apr 2008 18:42:46 +0000 (20:42 +0200)
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>
MAINTAINERS
board/linkstation/hwctl.c

index d1782b48643ec3956f3352097b885ea84fb98fbe..58f833c149197032f6b99931095d6e7623031975 100644 (file)
@@ -408,6 +408,10 @@ John Zhan <zhanz@sinovee.com>
 
        svm_sc8xx               MPC8xx
 
+Guennadi Liakhovetski <g.liakhovetski@gmx.de>
+
+       linkstation             MPC8241
+
 -------------------------------------------------------------------------
 
 Unknown / orphaned boards:
index 9db128a83fd7fb9dbd8f96b73cc5b4f601540a30..2e5b5c83acdce0c8a69c2f7976f64cfbbb0ca237 100644 (file)
@@ -27,7 +27,7 @@
 /*--------------------------------------------------------------*/
 static inline void miconCntl_SendUart(unsigned char dat)
 {
-       out_8((char *)AVR_PORT, dat);
+       out_8((unsigned char *)AVR_PORT, dat);
        mdelay(1);
 }