mbedtls/include/psa
Gilles Peskine 7ef23bee0e Documentation: fix \p names that diverged from the code
Fix places where Doxygen documentation uses \p to refer to a parameter
name and where the name used did not match the actual parameter name.

I used the following script to detect problematic cases:
```
perl -w -ne 'if (eof) { $. = 0; } if (m!^/\*\*!) { $in_doc = 1; %param = (); %p = (); } if (m!\*/!) { foreach $name (keys %p) { if (!$param{$name}) { foreach $line (@{$p{$name}}) { print "$ARGV:$line: $name\n" } } } $in_doc = 0; } if ($in_doc) { if (/\\param(?: *\[[^\[\]]*\])? +(\w+)/) { $param{$1} = 1; } foreach (/\\p +\*?(\w+)/) { push @{$p{$1}}, $.; } }' include/psa/*.h
```

This commits fixes all the remaining occurrences under include/psa,
which were just trivial name mismatches.

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
2021-03-08 17:26:31 +01:00
..
crypto_compat.h Documentation: fix \p names that diverged from the code 2021-03-08 17:26:31 +01:00
crypto_config.h Define WANT symbols for always-supported key types 2021-02-17 14:50:52 +01:00
crypto_driver_common.h Remove old-style accelerator and entropy driver interfaces 2020-11-30 17:37:14 +01:00
crypto_extra.h Merge pull request #3995 from stevew817/feature/psa_configurable_static_ram_usage 2021-02-16 12:52:24 +01:00
crypto_platform.h Minor documentation improvements 2021-01-04 21:00:53 +01:00
crypto_se_driver.h Documentation: fix \p names that diverged from the code 2021-03-08 17:26:31 +01:00
crypto_sizes.h Documentation: fix \p used for non-parameters 2021-03-08 17:26:15 +01:00
crypto_struct.h Rename unnamespaced identifiers 2021-01-20 17:42:25 +01:00
crypto_types.h psa: Make sure MBEDTLS_PSA_CRYPTO_CLIENT is defined 2021-02-09 15:36:08 +01:00
crypto_values.h Documentation: fix \p names that diverged from the code 2021-03-08 17:26:31 +01:00
crypto.h Documentation: fix \p used for non-parameters 2021-03-08 17:26:15 +01:00