ppc4xx_config.h 507 B

12345678910111213141516171819202122232425
  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. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef __PPC4xx_CONFIG_H
  11. #define __PPC4xx_CONFIG_H
  12. #include <common.h>
  13. struct ppc4xx_config {
  14. char label[16];
  15. char description[64];
  16. u8 val[CONFIG_4xx_CONFIG_BLOCKSIZE];
  17. };
  18. extern struct ppc4xx_config ppc4xx_config_val[];
  19. extern int ppc4xx_config_count;
  20. #endif /* __PPC4xx_CONFIG_H */