blob: 6d619e51282c0b2831662fd64c5f2aa0430424c2 [file] [log] [blame]
wdenk5c952cf2004-10-10 21:27:30 +00001/*
2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-10-10 21:27:30 +00006 */
7
8#include <common.h>
9
10int board_early_init_f (void)
11{
12 return 0;
13}
14
15int checkboard (void)
16{
17 puts ("BOARD : Psyent PCI-5441\n");
18 return 0;
19}
20
Becky Bruce9973e3c2008-06-09 16:03:40 -050021phys_size_t initdram (int board_type)
wdenk5c952cf2004-10-10 21:27:30 +000022{
23 return (0);
24}