/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* AMCC SoC PPC4xx Crypto Driver3*4* Copyright (c) 2008 Applied Micro Circuits Corporation.5* All rights reserved. James Hsiao <[email protected]>6*7* This file defines the security context8* associate format.9*/1011#ifndef __CRYPTO4XX_TRNG_H__12#define __CRYPTO4XX_TRNG_H__1314#ifdef CONFIG_HW_RANDOM_PPC4XX15void ppc4xx_trng_probe(struct crypto4xx_core_device *core_dev);16void ppc4xx_trng_remove(struct crypto4xx_core_device *core_dev);17#else18static inline void ppc4xx_trng_probe(19struct crypto4xx_core_device *dev __maybe_unused) { }20static inline void ppc4xx_trng_remove(21struct crypto4xx_core_device *dev __maybe_unused) { }22#endif2324#endif252627