diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2024-12-30 15:24:00 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2025-01-09 12:36:55 -0700 |
commit | fcf22a957ff82c7b1020cc6e72a0f1616763fb76 (patch) | |
tree | 60a014fddb808e756288d723b60a88c7c2ed6c9d | |
parent | 3008178ef3714c41dee1d49191cfc66726f680d9 (diff) | |
download | lwn-fcf22a957ff82c7b1020cc6e72a0f1616763fb76.tar.gz lwn-fcf22a957ff82c7b1020cc6e72a0f1616763fb76.zip |
doc: module: DEFAULT_SYMBOL_NAMESPACE must be defined before #includes
The definition of EXPORT_SYMBOL et al depends on
DEFAULT_SYMBOL_NAMESPACE. So DEFAULT_SYMBOL_NAMESPACE must already be
available when <linux/export.h> is parsed.
Also when defined that early there is no need for an #undef, so drop
that from the usage example.
Reported-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/linux-i2c/Z09bp9uMzwXRLXuF@smile.fi.intel.com/
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/3dd7ff6fa0a636de86e091286016be8c90e03631.1733305665.git.ukleinek@kernel.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20241230142357.3203913-6-u.kleine-koenig@baylibre.com
-rw-r--r-- | Documentation/core-api/symbol-namespaces.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Documentation/core-api/symbol-namespaces.rst b/Documentation/core-api/symbol-namespaces.rst index 473d025657fd..06f766a6aab2 100644 --- a/Documentation/core-api/symbol-namespaces.rst +++ b/Documentation/core-api/symbol-namespaces.rst @@ -78,11 +78,10 @@ as this argument has preference over a default symbol namespace. A second option to define the default namespace is directly in the compilation unit as preprocessor statement. The above example would then read:: - #undef DEFAULT_SYMBOL_NAMESPACE #define DEFAULT_SYMBOL_NAMESPACE "USB_COMMON" -within the corresponding compilation unit before any EXPORT_SYMBOL macro is -used. +within the corresponding compilation unit before the #include for +<linux/export.h>. Typically it's placed before the first #include statement. 3. How to use Symbols exported in Namespaces ============================================ |