X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=board%2Ftb0229%2Ftb0229.c;h=921bd3adcdb524cde53362e54541e88452d8ccc6;hb=6841785a0bb0f38175456a923edd634fb7dd6947;hp=61c2e9bd36606f00872c90bd082f12b1f223513e;hpb=7fc792895be3c0edf423c4038992b40345672a12;p=u-boot diff --git a/board/tb0229/tb0229.c b/board/tb0229/tb0229.c index 61c2e9bd36..921bd3adcd 100644 --- a/board/tb0229/tb0229.c +++ b/board/tb0229/tb0229.c @@ -12,10 +12,17 @@ #include #include #include -#include #include +#include #include +void _machine_restart(void) +{ + void (*f)(void) = (void *) 0xbfc00000; + + f(); +} + #if defined(CONFIG_PCI) static struct pci_controller hose; @@ -25,7 +32,7 @@ void pci_init_board (void) } #endif -long int initdram(int board_type) +phys_size_t initdram(int board_type) { return get_ram_size (CFG_SDRAM_BASE, 0x8000000); }