Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: mei.rst: fix a C expression markup

Sphinx 3.x doesn't allow expressions using :c:func markup:

./Documentation/driver-api/mei/mei.rst:41: WARNING: Unparseable C cross-reference: 'close(int fd)'
Invalid C declaration: Expected end of definition. [error at 5]
close(int fd)
-----^

So, convert it into a :c:expr.

Acked-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

+1 -1
+1 -1
Documentation/driver-api/mei/mei.rst
··· 38 38 configuration, the driver by default allows only a privileged 39 39 user to access it. 40 40 41 - The session is terminated calling :c:func:`close(int fd)`. 41 + The session is terminated calling :c:expr:`close(fd)`. 42 42 43 43 A code snippet for an application communicating with Intel AMTHI client: 44 44