]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/psyent/pci5441/pci5441.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / psyent / pci5441 / pci5441.c
CommitLineData
5c952cf0
WD
1/*
2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
5c952cf0
WD
6 */
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
9973e3c6 21phys_size_t initdram (int board_type)
5c952cf0
WD
22{
23 return (0);
24}