Stefan Roese | 87c0b72 | 2009-07-20 06:57:27 +0200 | [diff] [blame] | 1 | /* |
| 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 Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 87c0b72 | 2009-07-20 06:57:27 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __PPC4xx_CONFIG_H |
| 12 | #define __PPC4xx_CONFIG_H |
| 13 | |
| 14 | #include <common.h> |
| 15 | |
| 16 | struct ppc4xx_config { |
| 17 | char label[16]; |
| 18 | char description[64]; |
| 19 | u8 val[CONFIG_4xx_CONFIG_BLOCKSIZE]; |
| 20 | }; |
| 21 | |
| 22 | extern struct ppc4xx_config ppc4xx_config_val[]; |
| 23 | extern int ppc4xx_config_count; |
| 24 | |
| 25 | #endif /* __PPC4xx_CONFIG_H */ |