mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 01:30:55 +07:00
c11fc3491c
Some header files are never included outside of a mach-iop13xx directory and do not need to be made visible in include/mach, so let's just move them all down one level. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
12 lines
174 B
C
12 lines
174 B
C
#ifndef _IOP13XX_MSI_H_
|
|
#define _IOP13XX_MSI_H_
|
|
#ifdef CONFIG_PCI_MSI
|
|
void iop13xx_msi_init(void);
|
|
#else
|
|
static inline void iop13xx_msi_init(void)
|
|
{
|
|
return;
|
|
}
|
|
#endif
|
|
#endif
|