2019-05-27 14:55:06 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
crypto: amcc - fix incorrect kernel-doc comment syntax in files
The opening comment mark '/**' is used for highlighting the beginning of
kernel-doc comments.
There are certain files in drivers/crypto/amcc, which follow this syntax,
but the content inside does not comply with kernel-doc.
Such lines were probably not meant for kernel-doc parsing, but are parsed
due to the presence of kernel-doc like comment syntax(i.e, '/**'), which
causes unexpected warnings from kernel-doc.
E.g., presence of kernel-doc like comment in
drivers/crypto/amcc/crypto4xx_alg.c at header, and some other lines,
causes these warnings by kernel-doc:
"warning: expecting prototype for AMCC SoC PPC4xx Crypto Driver(). Prototype was for set_dynamic_sa_command_0() instead"
"warning: Function parameter or member 'dir' not described in 'set_dynamic_sa_command_0'"
etc..
Provide a simple fix by replacing such occurrences with general comment
format, i.e. '/*', to prevent kernel-doc from parsing it.
Signed-off-by: Aditya Srivastava <yashsri421@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2021-03-21 20:08:32 +08:00
|
|
|
/*
|
2016-04-18 18:57:41 +08:00
|
|
|
* AMCC SoC PPC4xx Crypto Driver
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Applied Micro Circuits Corporation.
|
|
|
|
* All rights reserved. James Hsiao <jhsiao@amcc.com>
|
|
|
|
*
|
|
|
|
* This file defines the security context
|
|
|
|
* associate format.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CRYPTO4XX_TRNG_H__
|
|
|
|
#define __CRYPTO4XX_TRNG_H__
|
|
|
|
|
|
|
|
#ifdef CONFIG_HW_RANDOM_PPC4XX
|
|
|
|
void ppc4xx_trng_probe(struct crypto4xx_core_device *core_dev);
|
|
|
|
void ppc4xx_trng_remove(struct crypto4xx_core_device *core_dev);
|
|
|
|
#else
|
|
|
|
static inline void ppc4xx_trng_probe(
|
2019-01-23 19:24:18 +08:00
|
|
|
struct crypto4xx_core_device *dev __maybe_unused) { }
|
2016-04-18 18:57:41 +08:00
|
|
|
static inline void ppc4xx_trng_remove(
|
2019-01-23 19:24:18 +08:00
|
|
|
struct crypto4xx_core_device *dev __maybe_unused) { }
|
2016-04-18 18:57:41 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|