blob: f38fde542ea888cee09e8df79563b920e54f07af [file] [log] [blame]
Stefan Roese87c0b722009-07-20 06:57:27 +02001/*
2 * (C) Copyright 2008-2009
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * (C) Copyright 2009
6 * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.de
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese87c0b722009-07-20 06:57:27 +02009 */
10
11#ifndef __PPC4xx_CONFIG_H
12#define __PPC4xx_CONFIG_H
13
14#include <common.h>
15
16struct ppc4xx_config {
17 char label[16];
18 char description[64];
19 u8 val[CONFIG_4xx_CONFIG_BLOCKSIZE];
20};
21
22extern struct ppc4xx_config ppc4xx_config_val[];
23extern int ppc4xx_config_count;
24
25#endif /* __PPC4xx_CONFIG_H */