You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef SDHI_H
|
|
#define SDHI_H
|
|
|
|
/**************************************************
|
|
*
|
|
* CPU specific settings
|
|
*
|
|
**************************************************/
|
|
|
|
#ifdef CONFIG_ARCH_SH7372
|
|
#include "mach/sdhi-sh7372.h"
|
|
#else
|
|
#error "unsupported CPU."
|
|
#endif
|
|
|
|
#endif /* SDHI_H */
|
|
|