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: it_IT: hacking.rst: fix a typo on a markup

There's a missing "`", causing this warning:
./Documentation/translations/it_IT/kernel-hacking/hacking.rst:404: WARNING: Unparseable C cross-reference: 'cpu_to_be32p(), che prende un puntatore\nad un tipo, e ritorna il valore convertito. L\'altra variante per\nla famiglia di conversioni "in-situ", come :c:func:`cpu_to_be32s'
Invalid C declaration: Expected end of definition. [error at 14]
cpu_to_be32p(), che prende un puntatore
ad un tipo, e ritorna il valore convertito. L'altra variante per
la famiglia di conversioni "in-situ", come :c:func:`cpu_to_be32s
--------------^

Acked-by: Federico Vaga <federico.vaga@vaga.pv.it>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>

+1 -1
+1 -1
Documentation/translations/it_IT/kernel-hacking/hacking.rst
··· 402 402 :c:func:`be32_to_cpu()`, eccetera. 403 403 404 404 Queste funzioni hanno principalmente due varianti: la variante per 405 - puntatori, come :c:func:`cpu_to_be32p(), che prende un puntatore 405 + puntatori, come :c:func:`cpu_to_be32p()`, che prende un puntatore 406 406 ad un tipo, e ritorna il valore convertito. L'altra variante per 407 407 la famiglia di conversioni "in-situ", come :c:func:`cpu_to_be32s()`, 408 408 che convertono il valore puntato da un puntatore, e ritornano void.