0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef __CRYPTO4XX_TRNG_H__
0013 #define __CRYPTO4XX_TRNG_H__
0014
0015 #ifdef CONFIG_HW_RANDOM_PPC4XX
0016 void ppc4xx_trng_probe(struct crypto4xx_core_device *core_dev);
0017 void ppc4xx_trng_remove(struct crypto4xx_core_device *core_dev);
0018 #else
0019 static inline void ppc4xx_trng_probe(
0020 struct crypto4xx_core_device *dev __maybe_unused) { }
0021 static inline void ppc4xx_trng_remove(
0022 struct crypto4xx_core_device *dev __maybe_unused) { }
0023 #endif
0024
0025 #endif