Adds MODULE_DEVICE_TABLE(i2c, ...) to correctly export tables in i2c drivers --- Ahem, My appologies, I wrongly sent the patch I was working on for OF tables, Of course this is the correct patch for adding the i2c_device_id exports, which I think is what you are currently looking at -- Kieran .../coccinelle/i2c/i2c_table_missing_export.cocci | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 scripts/coccinelle/i2c/i2c_table_missing_export.cocci diff --git a/scripts/coccinelle/i2c/i2c_table_missing_export.cocci b/scripts/coccinelle/i2c/i2c_table_missing_export.cocci new file mode 100644 index 000000000000..58c06856e4d4 --- /dev/null +++ b/scripts/coccinelle/i2c/i2c_table_missing_export.cocci @@ -0,0 +1,30 @@ +// Look for I2C drivers without an exported i2c_device_id table, +// and export it using the MODULE_DEVICE_TABLE(); +// +// Usage: +// spatch --sp-file scripts/coccinelle/i2c/i2c_table_missing_export.cocci . --in-place + +// C1 : Identify the i2c_device_id array + +@ dev_id @ +identifier arr; +@@ +struct i2c_device_id arr[] = { ... }; + +// C2 : Check if we already export the MODULE_DEVICE_TABLE + +@ i2c_dev_table depends on dev_id @ +declarer name MODULE_DEVICE_TABLE; +identifier i2c; +identifier dev_id.arr; +@@ + MODULE_DEVICE_TABLE(i2c, arr); + + +// A1: Export it! + +@ add_mod_dev_table depends on !i2c_dev_table @ +identifier dev_id.arr; +@@ +struct i2c_device_id arr[] = { ... }; ++ MODULE_DEVICE_TABLE(i2c, arr); -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html