diff options
Diffstat (limited to 'board/mousse')
-rw-r--r-- | board/mousse/m48t59y.c | 4 | ||||
-rw-r--r-- | board/mousse/u-boot.lds | 1 | ||||
-rw-r--r-- | board/mousse/u-boot.lds.ram | 1 | ||||
-rw-r--r-- | board/mousse/u-boot.lds.rom | 1 |
4 files changed, 3 insertions, 4 deletions
diff --git a/board/mousse/m48t59y.c b/board/mousse/m48t59y.c index 37a6244198..2c1e6cf8b7 100644 --- a/board/mousse/m48t59y.c +++ b/board/mousse/m48t59y.c @@ -278,7 +278,7 @@ void m48_watchdog_arm(int usec) /* * U-Boot RTC support. */ -void +int rtc_get( struct rtc_time *tmp ) { m48_tod_get(&tmp->tm_year, @@ -295,6 +295,8 @@ rtc_get( struct rtc_time *tmp ) tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday, tmp->tm_hour, tmp->tm_min, tmp->tm_sec ); #endif + + return 0; } void diff --git a/board/mousse/u-boot.lds b/board/mousse/u-boot.lds index fb24399cac..4e3b89d184 100644 --- a/board/mousse/u-boot.lds +++ b/board/mousse/u-boot.lds @@ -22,7 +22,6 @@ */ OUTPUT_ARCH(powerpc) -SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib); /* Do we need any of these for elf? __DYNAMIC = 0; */ SECTIONS diff --git a/board/mousse/u-boot.lds.ram b/board/mousse/u-boot.lds.ram index eb47ae670d..68c4ccaacf 100644 --- a/board/mousse/u-boot.lds.ram +++ b/board/mousse/u-boot.lds.ram @@ -22,7 +22,6 @@ */ OUTPUT_ARCH(powerpc) -SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib); MEMORY { ram (!rx) : org = 0x00000000 , LENGTH = 8M diff --git a/board/mousse/u-boot.lds.rom b/board/mousse/u-boot.lds.rom index 5a5722e81a..952bf01813 100644 --- a/board/mousse/u-boot.lds.rom +++ b/board/mousse/u-boot.lds.rom @@ -22,7 +22,6 @@ */ OUTPUT_ARCH(powerpc) -SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/local/powerpc-any-elf/lib); /* Do we need any of these for elf? __DYNAMIC = 0; */ SECTIONS |