Skip to content

Commit b67aa4e

Browse files
FedericoVagaJonathan Corbet
authored andcommitted
doc:it_IT: align Italian translation
Translation for the following patches: commit c4f4af4 ("docs: Add documentation for Symbol Namespaces") commit 36bc683 ("kernel-doc: rename the kernel-doc directive 'functions' to 'identifiers'") commit a035d55 ("Makefile: Globally enable fall-through warning") commit b9918bd ("Documentation/process: Add fallthrough pseudo-keyword") commit 58ad30c ("docs: fix reference to core-api/namespaces.rst") commit fb0e0ff ("Documentation: bring process docs up to date") commit 7af5167 ("docs: deprecated.rst: Add BUG()-family") commit 7929b98 ("docs: Remove :c:func: from process/deprecated.rst") commit 76136e0 ("docs: deprecated.rst: Clean up fall-through details") commit d8401f5 ("docs: deprecated.rst: Add %p to the list") commit b173529 ("docs: locking: Drop :c:func: throughout") commit 6adb775 ("docs: locking: Add 'need' to hardirq section") Signed-off-by: Federico Vaga <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jonathan Corbet <[email protected]>
1 parent 16a398d commit b67aa4e

File tree

6 files changed

+287
-159
lines changed

6 files changed

+287
-159
lines changed

Documentation/translations/it_IT/doc-guide/kernel-doc.rst

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,22 @@ internal: *[source-pattern ...]*
515515
.. kernel-doc:: drivers/gpu/drm/i915/intel_audio.c
516516
:internal:
517517

518+
identifiers: *[ function/type ...]*
519+
Include la documentazione per ogni *function* e *type* in *source*.
520+
Se non vengono esplicitamente specificate le funzioni da includere, allora
521+
verranno incluse tutte quelle disponibili in *source*.
522+
523+
Esempi::
524+
525+
.. kernel-doc:: lib/bitmap.c
526+
:identifiers: bitmap_parselist bitmap_parselist_user
527+
528+
.. kernel-doc:: lib/idr.c
529+
:identifiers:
530+
531+
functions: *[ function ...]*
532+
Questo è uno pseudonimo, deprecato, per la direttiva 'identifiers'.
533+
518534
doc: *title*
519535
Include la documentazione del paragrafo ``DOC:`` identificato dal titolo
520536
(*title*) all'interno del file sorgente (*source*). Gli spazi in *title* sono
@@ -528,15 +544,6 @@ doc: *title*
528544
.. kernel-doc:: drivers/gpu/drm/i915/intel_audio.c
529545
:doc: High Definition Audio over HDMI and Display Port
530546

531-
functions: *function* *[...]*
532-
Dal file sorgente (*source*) include la documentazione per le funzioni
533-
elencate (*function*).
534-
535-
Esempio::
536-
537-
.. kernel-doc:: lib/bitmap.c
538-
:functions: bitmap_parselist bitmap_parselist_user
539-
540547
Senza alcuna opzione, la direttiva kernel-doc include tutti i commenti di
541548
documentazione presenti nel file sorgente (*source*).
542549

Documentation/translations/it_IT/kernel-hacking/hacking.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,24 @@ Alcuni manutentori e sviluppatori potrebbero comunque richiedere
627627
:c:func:`EXPORT_SYMBOL_GPL()` quando si aggiungono nuove funzionalità o
628628
interfacce.
629629

630+
:c:func:`EXPORT_SYMBOL_NS()`
631+
----------------------------
632+
633+
Definita in ``include/linux/export.h``
634+
635+
Questa è una variate di `EXPORT_SYMBOL()` che permette di specificare uno
636+
spazio dei nomi. Lo spazio dei nomi è documentato in
637+
:doc:`../core-api/symbol-namespaces`
638+
639+
:c:func:`EXPORT_SYMBOL_NS_GPL()`
640+
--------------------------------
641+
642+
Definita in ``include/linux/export.h``
643+
644+
Questa è una variate di `EXPORT_SYMBOL_GPL()` che permette di specificare uno
645+
spazio dei nomi. Lo spazio dei nomi è documentato in
646+
:doc:`../core-api/symbol-namespaces`
647+
630648
Procedure e convenzioni
631649
=======================
632650

0 commit comments

Comments
 (0)