4a0f081d1b
I made a bit of a thinko when adding Mackerel to the boards that support zboot using MMCIF. Reported-by: Magnus Damm <magnus.damm@gmail.com> Signed-off-by: Simon Horman <horms@verge.net.au> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
24 lines
496 B
C
24 lines
496 B
C
#ifndef ZBOOT_H
|
|
#define ZBOOT_H
|
|
|
|
#include <asm/mach-types.h>
|
|
#include <mach/zboot_macros.h>
|
|
|
|
/**************************************************
|
|
*
|
|
* board specific settings
|
|
*
|
|
**************************************************/
|
|
|
|
#ifdef CONFIG_MACH_AP4EVB
|
|
#define MACH_TYPE MACH_TYPE_AP4EVB
|
|
#include "mach/head-ap4evb.txt"
|
|
#elif defined(CONFIG_MACH_MACKEREL)
|
|
#define MACH_TYPE MACH_TYPE_MACKEREL
|
|
#include "mach/head-mackerel.txt"
|
|
#else
|
|
#error "unsupported board."
|
|
#endif
|
|
|
|
#endif /* ZBOOT_H */
|