mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-06 05:55:21 +07:00
17 lines
285 B
C
17 lines
285 B
C
![]() |
#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 */
|