diff options
| author | Guennadi Liakhovetski <[email protected]> | 2008-04-28 14:35:57 +0200 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2008-04-28 20:42:46 +0200 |
| commit | db9084de28c46ac81c8f681722cb0d7411be4d7f (patch) | |
| tree | d4c681d4d995ffb9b7ab6d6eeb672f431bbd2ede | |
| parent | c71abba3cb67b063f789f17abf6c7447727c0cd5 (diff) | |
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 <[email protected]>
| -rw-r--r-- | MAINTAINERS | 4 | ||||
| -rw-r--r-- | board/linkstation/hwctl.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index d1782b48643..58f833c1491 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -408,6 +408,10 @@ John Zhan <[email protected]> svm_sc8xx MPC8xx +Guennadi Liakhovetski <[email protected]> + + linkstation MPC8241 + ------------------------------------------------------------------------- Unknown / orphaned boards: diff --git a/board/linkstation/hwctl.c b/board/linkstation/hwctl.c index 9db128a83fd..2e5b5c83acd 100644 --- a/board/linkstation/hwctl.c +++ b/board/linkstation/hwctl.c @@ -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); } |
