mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:46:16 +00:00
iio: Drop explicit initialization of struct i2c_device_id::driver_data to 0
These drivers don't use the driver_data member of struct i2c_device_id, so don't explicitly initialize this member. This prepares putting driver_data in an anonymous union which requires either no initialization or named designators. But it's also a nice cleanup on its own. While add it, also remove commas after the sentinel entries. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20240508072928.2135858-2-u.kleine-koenig@pengutronix.de Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
1b5a2466b7
commit
4391affa10
@ -61,8 +61,8 @@ static int adxl367_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id adxl367_i2c_id[] = {
|
||||
{ "adxl367", 0 },
|
||||
{ },
|
||||
{ "adxl367" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, adxl367_i2c_id);
|
||||
|
||||
|
@ -42,7 +42,7 @@ static int adxl372_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id adxl372_i2c_id[] = {
|
||||
{ "adxl372", 0 },
|
||||
{ "adxl372" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, adxl372_i2c_id);
|
||||
|
@ -28,7 +28,7 @@ static int bma400_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id bma400_i2c_ids[] = {
|
||||
{ "bma400", 0 },
|
||||
{ "bma400" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, bma400_i2c_ids);
|
||||
|
@ -268,7 +268,7 @@ static int da311_resume(struct device *dev)
|
||||
static DEFINE_SIMPLE_DEV_PM_OPS(da311_pm_ops, da311_suspend, da311_resume);
|
||||
|
||||
static const struct i2c_device_id da311_i2c_id[] = {
|
||||
{"da311", 0},
|
||||
{ "da311" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, da311_i2c_id);
|
||||
|
@ -201,9 +201,9 @@ static DEFINE_SIMPLE_DEV_PM_OPS(dmard06_pm_ops, dmard06_suspend,
|
||||
dmard06_resume);
|
||||
|
||||
static const struct i2c_device_id dmard06_id[] = {
|
||||
{ "dmard05", 0 },
|
||||
{ "dmard06", 0 },
|
||||
{ "dmard07", 0 },
|
||||
{ "dmard05" },
|
||||
{ "dmard06" },
|
||||
{ "dmard07" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, dmard06_id);
|
||||
|
@ -125,8 +125,8 @@ static int dmard09_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id dmard09_id[] = {
|
||||
{ "dmard09", 0 },
|
||||
{ },
|
||||
{ "dmard09" },
|
||||
{ }
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(i2c, dmard09_id);
|
||||
|
@ -231,7 +231,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(dmard10_pm_ops, dmard10_suspend,
|
||||
dmard10_resume);
|
||||
|
||||
static const struct i2c_device_id dmard10_i2c_id[] = {
|
||||
{"dmard10", 0},
|
||||
{ "dmard10" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, dmard10_i2c_id);
|
||||
|
@ -43,8 +43,8 @@ static const struct of_device_id kxsd9_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, kxsd9_of_match);
|
||||
|
||||
static const struct i2c_device_id kxsd9_i2c_id[] = {
|
||||
{"kxsd9", 0},
|
||||
{ },
|
||||
{ "kxsd9" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, kxsd9_i2c_id);
|
||||
|
||||
|
@ -180,7 +180,7 @@ static int mc3230_resume(struct device *dev)
|
||||
static DEFINE_SIMPLE_DEV_PM_OPS(mc3230_pm_ops, mc3230_suspend, mc3230_resume);
|
||||
|
||||
static const struct i2c_device_id mc3230_i2c_id[] = {
|
||||
{"mc3230", 0},
|
||||
{ "mc3230" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mc3230_i2c_id);
|
||||
|
@ -32,8 +32,8 @@ static void mma7455_i2c_remove(struct i2c_client *i2c)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id mma7455_i2c_ids[] = {
|
||||
{ "mma7455", 0 },
|
||||
{ "mma7456", 0 },
|
||||
{ "mma7455" },
|
||||
{ "mma7456" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mma7455_i2c_ids);
|
||||
|
@ -241,7 +241,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(mma7660_pm_ops, mma7660_suspend,
|
||||
mma7660_resume);
|
||||
|
||||
static const struct i2c_device_id mma7660_i2c_id[] = {
|
||||
{"mma7660", 0},
|
||||
{ "mma7660" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mma7660_i2c_id);
|
||||
|
@ -595,7 +595,7 @@ static const struct acpi_device_id mma9551_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, mma9551_acpi_match);
|
||||
|
||||
static const struct i2c_device_id mma9551_id[] = {
|
||||
{"mma9551", 0},
|
||||
{ "mma9551" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -1234,8 +1234,8 @@ static const struct acpi_device_id mma9553_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, mma9553_acpi_match);
|
||||
|
||||
static const struct i2c_device_id mma9553_id[] = {
|
||||
{"mma9553", 0},
|
||||
{},
|
||||
{ "mma9553" },
|
||||
{}
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(i2c, mma9553_id);
|
||||
|
@ -584,9 +584,9 @@ static const struct of_device_id mxc4005_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, mxc4005_of_match);
|
||||
|
||||
static const struct i2c_device_id mxc4005_id[] = {
|
||||
{"mxc4005", 0},
|
||||
{"mxc6655", 0},
|
||||
{ },
|
||||
{ "mxc4005" },
|
||||
{ "mxc6655" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mxc4005_id);
|
||||
|
||||
|
@ -172,8 +172,8 @@ static const struct acpi_device_id mxc6255_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, mxc6255_acpi_match);
|
||||
|
||||
static const struct i2c_device_id mxc6255_id[] = {
|
||||
{"mxc6225", 0},
|
||||
{"mxc6255", 0},
|
||||
{ "mxc6225" },
|
||||
{ "mxc6255" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mxc6255_id);
|
||||
|
@ -633,8 +633,8 @@ static DEFINE_SIMPLE_DEV_PM_OPS(stk8312_pm_ops, stk8312_suspend,
|
||||
|
||||
static const struct i2c_device_id stk8312_i2c_id[] = {
|
||||
/* Deprecated in favour of lowercase form */
|
||||
{ "STK8312", 0 },
|
||||
{ "stk8312", 0 },
|
||||
{ "STK8312" },
|
||||
{ "stk8312" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, stk8312_i2c_id);
|
||||
|
@ -525,7 +525,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(stk8ba50_pm_ops, stk8ba50_suspend,
|
||||
stk8ba50_resume);
|
||||
|
||||
static const struct i2c_device_id stk8ba50_i2c_id[] = {
|
||||
{"stk8ba50", 0},
|
||||
{ "stk8ba50" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, stk8ba50_i2c_id);
|
||||
|
@ -536,7 +536,7 @@ static int ad7291_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ad7291_id[] = {
|
||||
{ "ad7291", 0 },
|
||||
{ "ad7291" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -124,7 +124,7 @@ static int ltc2485_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ltc2485_id[] = {
|
||||
{ "ltc2485", 0 },
|
||||
{ "ltc2485" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ltc2485_id);
|
||||
|
@ -532,7 +532,7 @@ static int nau7802_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id nau7802_i2c_id[] = {
|
||||
{ "nau7802", 0 },
|
||||
{ "nau7802" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, nau7802_i2c_id);
|
||||
|
@ -447,7 +447,7 @@ static int ads7924_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ads7924_id[] = {
|
||||
{ "ads7924", 0 },
|
||||
{ "ads7924" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ads7924_id);
|
||||
|
@ -163,7 +163,7 @@ static int ams_iaqcore_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ams_iaqcore_id[] = {
|
||||
{ "ams-iaq-core", 0 },
|
||||
{ "ams-iaq-core" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ams_iaqcore_id);
|
||||
|
@ -36,8 +36,8 @@ static int bme680_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id bme680_i2c_id[] = {
|
||||
{"bme680", 0},
|
||||
{},
|
||||
{ "bme680" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, bme680_i2c_id);
|
||||
|
||||
|
@ -551,7 +551,7 @@ static void ccs811_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ccs811_id[] = {
|
||||
{"ccs811", 0},
|
||||
{ "ccs811" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ccs811_id);
|
||||
|
@ -591,7 +591,7 @@ static int mcp4728_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id mcp4728_id[] = {
|
||||
{ "mcp4728", 0 },
|
||||
{ "mcp4728" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mcp4728_id);
|
||||
|
@ -47,9 +47,9 @@ static const struct acpi_device_id bmg160_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, bmg160_acpi_match);
|
||||
|
||||
static const struct i2c_device_id bmg160_i2c_id[] = {
|
||||
{"bmg160", 0},
|
||||
{"bmi055_gyro", 0},
|
||||
{"bmi088_gyro", 0},
|
||||
{ "bmg160" },
|
||||
{ "bmi055_gyro" },
|
||||
{ "bmi088_gyro" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -39,7 +39,7 @@ static void fxas21002c_i2c_remove(struct i2c_client *i2c)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id fxas21002c_i2c_id[] = {
|
||||
{ "fxas21002c", 0 },
|
||||
{ "fxas21002c" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, fxas21002c_i2c_id);
|
||||
|
@ -387,7 +387,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(itg3200_pm_ops, itg3200_suspend,
|
||||
itg3200_resume);
|
||||
|
||||
static const struct i2c_device_id itg3200_id[] = {
|
||||
{ "itg3200", 0 },
|
||||
{ "itg3200" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, itg3200_id);
|
||||
|
@ -582,7 +582,7 @@ static int afe4404_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id afe4404_ids[] = {
|
||||
{ "afe4404", 0 },
|
||||
{ "afe4404" },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, afe4404_ids);
|
||||
|
@ -483,7 +483,7 @@ static void max30100_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id max30100_id[] = {
|
||||
{ "max30100", 0 },
|
||||
{ "max30100" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, max30100_id);
|
||||
|
@ -253,7 +253,7 @@ static int am2315_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id am2315_i2c_id[] = {
|
||||
{"am2315", 0},
|
||||
{ "am2315" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, am2315_i2c_id);
|
||||
|
@ -396,12 +396,12 @@ static int hdc100x_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id hdc100x_id[] = {
|
||||
{ "hdc100x", 0 },
|
||||
{ "hdc1000", 0 },
|
||||
{ "hdc1008", 0 },
|
||||
{ "hdc1010", 0 },
|
||||
{ "hdc1050", 0 },
|
||||
{ "hdc1080", 0 },
|
||||
{ "hdc100x" },
|
||||
{ "hdc1000" },
|
||||
{ "hdc1008" },
|
||||
{ "hdc1010" },
|
||||
{ "hdc1050" },
|
||||
{ "hdc1080" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, hdc100x_id);
|
||||
|
@ -163,8 +163,8 @@ static int si7005_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id si7005_id[] = {
|
||||
{ "si7005", 0 },
|
||||
{ "th02", 0 },
|
||||
{ "si7005" },
|
||||
{ "th02" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, si7005_id);
|
||||
|
@ -138,8 +138,8 @@ static int si7020_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id si7020_id[] = {
|
||||
{ "si7020", 0 },
|
||||
{ "th06", 0 },
|
||||
{ "si7020" },
|
||||
{ "th06" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, si7020_id);
|
||||
|
@ -37,8 +37,8 @@ static int bmi160_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id bmi160_i2c_id[] = {
|
||||
{"bmi120", 0},
|
||||
{"bmi160", 0},
|
||||
{ "bmi120" },
|
||||
{ "bmi160" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, bmi160_i2c_id);
|
||||
|
@ -30,7 +30,7 @@ static int bno055_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id bno055_i2c_id[] = {
|
||||
{"bno055", 0},
|
||||
{ "bno055" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, bno055_i2c_id);
|
||||
|
@ -36,7 +36,7 @@ static int fxos8700_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id fxos8700_i2c_id[] = {
|
||||
{"fxos8700", 0},
|
||||
{ "fxos8700" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, fxos8700_i2c_id);
|
||||
|
@ -1505,7 +1505,7 @@ static const struct acpi_device_id kmx61_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, kmx61_acpi_match);
|
||||
|
||||
static const struct i2c_device_id kmx61_id[] = {
|
||||
{"kmx611021", 0},
|
||||
{ "kmx611021" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -261,7 +261,7 @@ static int adjd_s311_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id adjd_s311_id[] = {
|
||||
{ "adjd_s311", 0 },
|
||||
{ "adjd_s311" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, adjd_s311_id);
|
||||
|
@ -821,7 +821,7 @@ static int adux1020_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id adux1020_id[] = {
|
||||
{ "adux1020", 0 },
|
||||
{ "adux1020" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, adux1020_id);
|
||||
|
@ -236,7 +236,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(al3320a_pm_ops, al3320a_suspend,
|
||||
al3320a_resume);
|
||||
|
||||
static const struct i2c_device_id al3320a_id[] = {
|
||||
{"al3320a", 0},
|
||||
{ "al3320a" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, al3320a_id);
|
||||
|
@ -493,7 +493,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(apds9300_pm_ops, apds9300_suspend,
|
||||
apds9300_resume);
|
||||
|
||||
static const struct i2c_device_id apds9300_id[] = {
|
||||
{ APDS9300_DRV_NAME, 0 },
|
||||
{ APDS9300_DRV_NAME },
|
||||
{ }
|
||||
};
|
||||
|
||||
|
@ -1107,7 +1107,7 @@ static const struct dev_pm_ops apds9960_pm_ops = {
|
||||
};
|
||||
|
||||
static const struct i2c_device_id apds9960_id[] = {
|
||||
{ "apds9960", 0 },
|
||||
{ "apds9960" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, apds9960_id);
|
||||
|
@ -256,8 +256,8 @@ static DEFINE_RUNTIME_DEV_PM_OPS(bh1780_dev_pm_ops, bh1780_runtime_suspend,
|
||||
bh1780_runtime_resume, NULL);
|
||||
|
||||
static const struct i2c_device_id bh1780_id[] = {
|
||||
{ "bh1780", 0 },
|
||||
{ },
|
||||
{ "bh1780" },
|
||||
{ }
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(i2c, bh1780_id);
|
||||
|
@ -368,7 +368,7 @@ static void cm3232_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id cm3232_id[] = {
|
||||
{"cm3232", 0},
|
||||
{ "cm3232" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -250,7 +250,7 @@ static int cm3323_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id cm3323_id[] = {
|
||||
{"cm3323", 0},
|
||||
{ "cm3323" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, cm3323_id);
|
||||
|
@ -713,7 +713,7 @@ static void cm36651_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id cm36651_id[] = {
|
||||
{ "cm36651", 0 },
|
||||
{ "cm36651" },
|
||||
{ }
|
||||
};
|
||||
|
||||
|
@ -692,8 +692,8 @@ static DEFINE_RUNTIME_DEV_PM_OPS(gp2ap002_dev_pm_ops, gp2ap002_runtime_suspend,
|
||||
gp2ap002_runtime_resume, NULL);
|
||||
|
||||
static const struct i2c_device_id gp2ap002_id_table[] = {
|
||||
{ "gp2ap002", 0 },
|
||||
{ },
|
||||
{ "gp2ap002" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, gp2ap002_id_table);
|
||||
|
||||
|
@ -1591,7 +1591,7 @@ static void gp2ap020a00f_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id gp2ap020a00f_id[] = {
|
||||
{ GP2A_I2C_NAME, 0 },
|
||||
{ GP2A_I2C_NAME },
|
||||
{ }
|
||||
};
|
||||
|
||||
|
@ -678,8 +678,8 @@ static DEFINE_RUNTIME_DEV_PM_OPS(isl29028_pm_ops, isl29028_suspend,
|
||||
isl29028_resume, NULL);
|
||||
|
||||
static const struct i2c_device_id isl29028_id[] = {
|
||||
{"isl29028", 0},
|
||||
{"isl29030", 0},
|
||||
{ "isl29028" },
|
||||
{ "isl29030" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, isl29028_id);
|
||||
|
@ -327,7 +327,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(isl29125_pm_ops, isl29125_suspend,
|
||||
isl29125_resume);
|
||||
|
||||
static const struct i2c_device_id isl29125_id[] = {
|
||||
{ "isl29125", 0 },
|
||||
{ "isl29125" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, isl29125_id);
|
||||
|
@ -429,7 +429,7 @@ static const struct acpi_device_id jsa1212_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, jsa1212_acpi_match);
|
||||
|
||||
static const struct i2c_device_id jsa1212_id[] = {
|
||||
{ JSA1212_DRIVER_NAME, 0 },
|
||||
{ JSA1212_DRIVER_NAME },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, jsa1212_id);
|
||||
|
@ -510,7 +510,7 @@ static int lv0104cs_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id lv0104cs_id[] = {
|
||||
{ "lv0104cs", 0 },
|
||||
{ "lv0104cs" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, lv0104cs_id);
|
||||
|
@ -598,7 +598,7 @@ static int max44000_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id max44000_id[] = {
|
||||
{"max44000", 0},
|
||||
{ "max44000" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, max44000_id);
|
||||
|
@ -534,7 +534,7 @@ static const struct of_device_id max44009_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, max44009_of_match);
|
||||
|
||||
static const struct i2c_device_id max44009_id[] = {
|
||||
{ "max44009", 0 },
|
||||
{ "max44009" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, max44009_id);
|
||||
|
@ -268,7 +268,7 @@ static const struct of_device_id noa1305_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, noa1305_of_match);
|
||||
|
||||
static const struct i2c_device_id noa1305_ids[] = {
|
||||
{ "noa1305", 0 },
|
||||
{ "noa1305" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, noa1305_ids);
|
||||
|
@ -822,7 +822,7 @@ static void opt3001_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id opt3001_id[] = {
|
||||
{ "opt3001", 0 },
|
||||
{ "opt3001" },
|
||||
{ } /* Terminating Entry */
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, opt3001_id);
|
||||
|
@ -462,7 +462,7 @@ static const struct acpi_device_id pa12203001_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, pa12203001_acpi_match);
|
||||
|
||||
static const struct i2c_device_id pa12203001_id[] = {
|
||||
{ "txcpa122", 0 },
|
||||
{ "txcpa122" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -1109,7 +1109,7 @@ static const struct acpi_device_id rpr0521_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, rpr0521_acpi_match);
|
||||
|
||||
static const struct i2c_device_id rpr0521_id[] = {
|
||||
{"rpr0521", 0},
|
||||
{ "rpr0521" },
|
||||
{ }
|
||||
};
|
||||
|
||||
|
@ -1055,7 +1055,7 @@ static int si1133_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id si1133_ids[] = {
|
||||
{ "si1133", 0 },
|
||||
{ "si1133" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, si1133_ids);
|
||||
|
@ -683,9 +683,9 @@ static DEFINE_SIMPLE_DEV_PM_OPS(stk3310_pm_ops, stk3310_suspend,
|
||||
stk3310_resume);
|
||||
|
||||
static const struct i2c_device_id stk3310_i2c_id[] = {
|
||||
{"STK3310", 0},
|
||||
{"STK3311", 0},
|
||||
{"STK3335", 0},
|
||||
{ "STK3310" },
|
||||
{ "STK3311" },
|
||||
{ "STK3335" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, stk3310_i2c_id);
|
||||
|
@ -363,7 +363,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(tcs3414_pm_ops, tcs3414_suspend,
|
||||
tcs3414_resume);
|
||||
|
||||
static const struct i2c_device_id tcs3414_id[] = {
|
||||
{ "tcs3414", 0 },
|
||||
{ "tcs3414" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tcs3414_id);
|
||||
|
@ -599,7 +599,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(tcs3472_pm_ops, tcs3472_suspend,
|
||||
tcs3472_resume);
|
||||
|
||||
static const struct i2c_device_id tcs3472_id[] = {
|
||||
{ "tcs3472", 0 },
|
||||
{ "tcs3472" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tcs3472_id);
|
||||
|
@ -227,7 +227,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(tsl4531_pm_ops, tsl4531_suspend,
|
||||
tsl4531_resume);
|
||||
|
||||
static const struct i2c_device_id tsl4531_id[] = {
|
||||
{ "tsl4531", 0 },
|
||||
{ "tsl4531" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tsl4531_id);
|
||||
|
@ -955,7 +955,7 @@ static const struct acpi_device_id us5182d_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, us5182d_acpi_match);
|
||||
|
||||
static const struct i2c_device_id us5182d_id[] = {
|
||||
{ "usd5182", 0 },
|
||||
{ "usd5182" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -653,7 +653,7 @@ static DEFINE_RUNTIME_DEV_PM_OPS(vcnl4035_pm_ops, vcnl4035_runtime_suspend,
|
||||
vcnl4035_runtime_resume, NULL);
|
||||
|
||||
static const struct i2c_device_id vcnl4035_id[] = {
|
||||
{ "vcnl4035", 0 },
|
||||
{ "vcnl4035" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, vcnl4035_id);
|
||||
|
@ -881,7 +881,7 @@ static const struct of_device_id veml6030_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, veml6030_of_match);
|
||||
|
||||
static const struct i2c_device_id veml6030_id[] = {
|
||||
{ "veml6030", 0 },
|
||||
{ "veml6030" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, veml6030_id);
|
||||
|
@ -189,7 +189,7 @@ static void veml6070_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id veml6070_id[] = {
|
||||
{ "veml6070", 0 },
|
||||
{ "veml6070" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, veml6070_id);
|
||||
|
@ -527,7 +527,7 @@ static const struct of_device_id vl6180_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, vl6180_of_match);
|
||||
|
||||
static const struct i2c_device_id vl6180_id[] = {
|
||||
{ "vl6180", 0 },
|
||||
{ "vl6180" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, vl6180_id);
|
||||
|
@ -545,7 +545,7 @@ static int zopt2201_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id zopt2201_id[] = {
|
||||
{ "zopt2201", 0 },
|
||||
{ "zopt2201" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, zopt2201_id);
|
||||
|
@ -505,7 +505,7 @@ static const struct of_device_id af8133j_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, af8133j_of_match);
|
||||
|
||||
static const struct i2c_device_id af8133j_id[] = {
|
||||
{ "af8133j", 0 },
|
||||
{ "af8133j" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, af8133j_id);
|
||||
|
@ -1025,10 +1025,10 @@ static DEFINE_RUNTIME_DEV_PM_OPS(ak8974_dev_pm_ops, ak8974_runtime_suspend,
|
||||
ak8974_runtime_resume, NULL);
|
||||
|
||||
static const struct i2c_device_id ak8974_id[] = {
|
||||
{"ami305", 0 },
|
||||
{"ami306", 0 },
|
||||
{"ak8974", 0 },
|
||||
{"hscdtd008a", 0 },
|
||||
{ "ami305" },
|
||||
{ "ami306" },
|
||||
{ "ak8974" },
|
||||
{ "hscdtd008a" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ak8974_id);
|
||||
|
@ -47,9 +47,9 @@ static const struct acpi_device_id bmc150_magn_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, bmc150_magn_acpi_match);
|
||||
|
||||
static const struct i2c_device_id bmc150_magn_i2c_id[] = {
|
||||
{"bmc150_magn", 0},
|
||||
{"bmc156_magn", 0},
|
||||
{"bmm150_magn", 0},
|
||||
{ "bmc150_magn" },
|
||||
{ "bmc156_magn" },
|
||||
{ "bmm150_magn" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, bmc150_magn_i2c_id);
|
||||
|
@ -624,7 +624,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(mag3110_pm_ops, mag3110_suspend,
|
||||
mag3110_resume);
|
||||
|
||||
static const struct i2c_device_id mag3110_id[] = {
|
||||
{ "mag3110", 0 },
|
||||
{ "mag3110" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mag3110_id);
|
||||
|
@ -563,7 +563,7 @@ static const struct acpi_device_id mmc35240_acpi_match[] = {
|
||||
MODULE_DEVICE_TABLE(acpi, mmc35240_acpi_match);
|
||||
|
||||
static const struct i2c_device_id mmc35240_id[] = {
|
||||
{"mmc35240", 0},
|
||||
{ "mmc35240" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mmc35240_id);
|
||||
|
@ -405,8 +405,8 @@ static const struct of_device_id lmp91000_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, lmp91000_of_match);
|
||||
|
||||
static const struct i2c_device_id lmp91000_id[] = {
|
||||
{ "lmp91000", 0 },
|
||||
{ "lmp91002", 0 },
|
||||
{ "lmp91000" },
|
||||
{ "lmp91002" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, lmp91000_id);
|
||||
|
@ -887,7 +887,7 @@ static int dps310_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id dps310_id[] = {
|
||||
{ DPS310_DEV_NAME, 0 },
|
||||
{ DPS310_DEV_NAME },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, dps310_id);
|
||||
|
@ -266,8 +266,8 @@ static int hp03_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id hp03_id[] = {
|
||||
{ "hp03", 0 },
|
||||
{ },
|
||||
{ "hp03" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, hp03_id);
|
||||
|
||||
|
@ -637,7 +637,7 @@ static const struct of_device_id icp10100_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, icp10100_of_match);
|
||||
|
||||
static const struct i2c_device_id icp10100_id[] = {
|
||||
{ "icp10100", 0 },
|
||||
{ "icp10100" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, icp10100_id);
|
||||
|
@ -45,7 +45,7 @@ static int mpl115_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id mpl115_i2c_id[] = {
|
||||
{ "mpl115", 0 },
|
||||
{ "mpl115" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mpl115_i2c_id);
|
||||
|
@ -318,7 +318,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(mpl3115_pm_ops, mpl3115_suspend,
|
||||
mpl3115_resume);
|
||||
|
||||
static const struct i2c_device_id mpl3115_id[] = {
|
||||
{ "mpl3115", 0 },
|
||||
{ "mpl3115" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mpl3115_id);
|
||||
|
@ -251,7 +251,7 @@ static int t5403_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id t5403_id[] = {
|
||||
{ "t5403", 0 },
|
||||
{ "t5403" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, t5403_id);
|
||||
|
@ -59,8 +59,8 @@ static void zpa2326_remove_i2c(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id zpa2326_i2c_ids[] = {
|
||||
{ "zpa2326", 0 },
|
||||
{ },
|
||||
{ "zpa2326" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, zpa2326_i2c_ids);
|
||||
|
||||
|
@ -989,7 +989,7 @@ static int isl29501_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id isl29501_id[] = {
|
||||
{"isl29501", 0},
|
||||
{ "isl29501" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -322,9 +322,9 @@ static void lidar_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id lidar_id[] = {
|
||||
{"lidar-lite-v2", 0},
|
||||
{"lidar-lite-v3", 0},
|
||||
{ },
|
||||
{ "lidar-lite-v2" },
|
||||
{ "lidar-lite-v3" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, lidar_id);
|
||||
|
||||
|
@ -308,7 +308,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(rfd77402_pm_ops, rfd77402_suspend,
|
||||
rfd77402_resume);
|
||||
|
||||
static const struct i2c_device_id rfd77402_id[] = {
|
||||
{ "rfd77402", 0 },
|
||||
{ "rfd77402" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, rfd77402_id);
|
||||
|
@ -1043,8 +1043,8 @@ static const struct of_device_id sx9500_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, sx9500_of_match);
|
||||
|
||||
static const struct i2c_device_id sx9500_id[] = {
|
||||
{"sx9500", 0},
|
||||
{ },
|
||||
{ "sx9500" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, sx9500_id);
|
||||
|
||||
|
@ -278,7 +278,7 @@ static int vl53l0x_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id vl53l0x_id[] = {
|
||||
{ "vl53l0x", 0 },
|
||||
{ "vl53l0x" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, vl53l0x_id);
|
||||
|
@ -1279,7 +1279,7 @@ static int mlx90632_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id mlx90632_id[] = {
|
||||
{ "mlx90632", 0 },
|
||||
{ "mlx90632" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, mlx90632_id);
|
||||
|
@ -280,7 +280,7 @@ static const struct of_device_id tmp006_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, tmp006_of_match);
|
||||
|
||||
static const struct i2c_device_id tmp006_id[] = {
|
||||
{ "tmp006", 0 },
|
||||
{ "tmp006" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tmp006_id);
|
||||
|
@ -563,7 +563,7 @@ static const struct of_device_id tmp007_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, tmp007_of_match);
|
||||
|
||||
static const struct i2c_device_id tmp007_id[] = {
|
||||
{ "tmp007", 0 },
|
||||
{ "tmp007" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tmp007_id);
|
||||
|
@ -206,7 +206,7 @@ static int tsys01_i2c_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id tsys01_id[] = {
|
||||
{"tsys01", 0},
|
||||
{ "tsys01" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tsys01_id);
|
||||
|
@ -168,7 +168,7 @@ static int tsys02d_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id tsys02d_id[] = {
|
||||
{"tsys02d", 0},
|
||||
{ "tsys02d" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tsys02d_id);
|
||||
|
Loading…
Reference in New Issue
Block a user