b24bd7e97b
Remove board support for the sh7372 based AP4EVB board The sh7372 SoC support code is still kept around since it is in use by the Mackerel board which is basically a more recent board where the design is based on AP4EVB. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
16 lines
289 B
C
16 lines
289 B
C
#ifndef MMC_H
|
|
#define MMC_H
|
|
|
|
/**************************************************
|
|
*
|
|
* board specific settings
|
|
*
|
|
**************************************************/
|
|
|
|
#ifdef CONFIG_MACH_MACKEREL
|
|
#include "mach/mmc-mackerel.h"
|
|
#else
|
|
#error "unsupported board."
|
|
#endif
|
|
|
|
#endif /* MMC_H */
|