linux/drivers/iio/gyro
Peter Zijlstra cdd30ebb1b module: Convert symbol namespace to string literal
Clean up the existing export namespace code along the same lines of
commit 33def8498f ("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.

Scripted using

  git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
  do
    awk -i inplace '
      /^#define EXPORT_SYMBOL_NS/ {
        gsub(/__stringify\(ns\)/, "ns");
        print;
        next;
      }
      /^#define MODULE_IMPORT_NS/ {
        gsub(/__stringify\(ns\)/, "ns");
        print;
        next;
      }
      /MODULE_IMPORT_NS/ {
        $0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
      }
      /EXPORT_SYMBOL_NS/ {
        if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
  	if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
  	    $0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
  	    $0 !~ /^my/) {
  	  getline line;
  	  gsub(/[[:space:]]*\\$/, "");
  	  gsub(/[[:space:]]/, "", line);
  	  $0 = $0 " " line;
  	}

  	$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
  		    "\\1(\\2, \"\\3\")", "g");
        }
      }
      { print }' $file;
  done

Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2024-12-02 11:34:44 -08:00
..
adis16080.c iio: gyro: adis16080: Fix alignment for DMA safety 2022-06-14 11:53:18 +01:00
adis16130.c move asm/unaligned.h to linux/unaligned.h 2024-10-02 17:23:23 -04:00
adis16136.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
adis16260.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
adxrs290.c iio: gyro: adxrs290: fix data signedness 2021-11-21 11:29:50 +00:00
adxrs450.c iio: gyro: adxrs450: Fix alignment for DMA safety 2022-06-14 11:53:18 +01:00
bmg160_core.c iio: fix write_event_config signature 2024-11-03 20:33:44 +00:00
bmg160_i2c.c iio: gyro: bmg160: Replace custom implementation of iio_get_acpi_device_name() 2024-11-01 14:54:44 +00:00
bmg160_spi.c spi: make remove callback a void function 2022-02-09 13:00:45 +00:00
bmg160.h License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
fxas21002c_core.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
fxas21002c_i2c.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
fxas21002c_spi.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
fxas21002c.h iio: gyro: fxas21002c: Move 'fxas21002c_reg_fields' to the only file its used 2020-07-20 09:03:25 +01:00
hid-sensor-gyro-3d.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
itg3200_buffer.c iio: itg3200: Call iio_trigger_notify_done() on error 2021-11-17 17:52:36 +00:00
itg3200_core.c iio: Drop explicit initialization of struct i2c_device_id::driver_data to 0 2024-05-27 09:48:57 +01:00
Kconfig iio: gyro: list adis16137 in Kconfig description 2024-10-21 19:19:24 +01:00
Makefile iio: gyro: Add driver support for ADXRS290 2020-08-22 10:53:20 +01:00
mpu3050-core.c iio: gyro: mpu3050: use irq_get_trigger_type() 2024-09-30 09:20:58 +01:00
mpu3050-i2c.c i2c: mux: Remove class argument from i2c_mux_add_adapter() 2024-05-13 16:13:19 +02:00
mpu3050.h iio: gyro: mpu3050: Make mpu3050_common_remove() return void 2022-05-01 19:01:13 +01:00
ssp_gyro_sensor.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
st_gyro_buffer.c iio:st-sensors: Remove duplicate MODULE_* 2022-02-18 11:36:54 +00:00
st_gyro_core.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
st_gyro_i2c.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
st_gyro_spi.c module: Convert symbol namespace to string literal 2024-12-02 11:34:44 -08:00
st_gyro.h iio: gyro: st_gyro: use devm_iio_triggered_buffer_setup() for buffer 2021-07-24 16:35:05 +01:00