mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
73f04d3d80
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>
26 lines
697 B
C
26 lines
697 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* 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(
|
|
struct crypto4xx_core_device *dev __maybe_unused) { }
|
|
static inline void ppc4xx_trng_remove(
|
|
struct crypto4xx_core_device *dev __maybe_unused) { }
|
|
#endif
|
|
|
|
#endif
|