From: Khaled Elnaggar Date: Mon, 26 May 2025 21:10:39 +0000 (+0300) Subject: docs: symbol-namespaces: fix reST warning with literal block X-Git-Tag: v6.16-rc1~10^2~11 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=94145ffb07601674091aadbdca9ce004b1736df4;p=linux-block.git docs: symbol-namespaces: fix reST warning with literal block Use a literal block for the EXPORT_SYMBOL_GPL_FOR_MODULES() example to avoid a Docutils warning about unmatched '*'. This ensures correct rendering and keeps the source readable. Warning: Documentation/core-api/symbol-namespaces.rst:90: WARNING: Inline emphasis start-string without end-string. [docutils] Signed-off-by: Khaled Elnaggar Reviewed-by: Bagas Sanjaya Signed-off-by: Masahiro Yamada --- diff --git a/Documentation/core-api/symbol-namespaces.rst b/Documentation/core-api/symbol-namespaces.rst index f7cfa7b73e97..32fc73dc5529 100644 --- a/Documentation/core-api/symbol-namespaces.rst +++ b/Documentation/core-api/symbol-namespaces.rst @@ -85,7 +85,7 @@ namespace cannot be imported. The macro takes a comma separated list of module names, allowing only those modules to access this symbol. Simple tail-globs are supported. -For example: +For example:: EXPORT_SYMBOL_GPL_FOR_MODULES(preempt_notifier_inc, "kvm,kvm-*")