mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-11 02:45:40 +07:00
![Magnus Damm](/assets/img/avatar_default.png)
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>
17 lines
289 B
C
17 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 */
|