mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
e8496ad6d8
The code example fails to compile:
1) addr_conv is defined twice, once as a VLA, which have been phased out
2) submit is not a pointer, but is still dereferenced with ->
3) The first call to async_xor() lacked the trailing semicolon
Fix these issues and while at it, fix some code style nitpicks as well:
1) make the functions static as users are unlikely to export them
2) include the relevant header
3) Shorten the example a bit by removing a redundant variable
definition
Fixes:
|
||
---|---|---|
.. | ||
device_drivers | ||
api-aead.rst | ||
api-akcipher.rst | ||
api-digest.rst | ||
api-intro.rst | ||
api-kpp.rst | ||
api-rng.rst | ||
api-samples.rst | ||
api-skcipher.rst | ||
api.rst | ||
architecture.rst | ||
asymmetric-keys.rst | ||
async-tx-api.rst | ||
crypto_engine.rst | ||
descore-readme.rst | ||
devel-algos.rst | ||
index.rst | ||
intro.rst | ||
userspace-if.rst |