mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-05 11:53:41 +00:00

Use `\t(\{ ?\},|\{\}|\{\s*/\*.*\*/\s*\},?)$` regex to find and replace the array sentinel in all IIO drivers to the same style. For some time, we've been trying to consistently use `{ }` (no trailing comma, no comment, one space between braces) for array sentinels in the IIO subsystem. Still nearly 50% of existing code uses a different style. To save reviewers from having to request this trivial change as frequently, let's normalize the style in all existing IIO drivers. At least when code is copy/pasted to new drivers, the style will be consistent. Signed-off-by: David Lechner <dlechner@baylibre.com> Reviewed-by: Andy Shevchenko <andy@kernel.org> Link: https://patch.msgid.link/20250411-iio-sentinel-normalization-v1-1-d293de3e3d93@baylibre.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2018 Synopsys, Inc. and/or its affiliates.
|
|
*
|
|
* Author: Vitor Soares <vitor.soares@synopsys.com>
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/module.h>
|
|
#include <linux/i3c/device.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/regmap.h>
|
|
|
|
#include "st_lsm6dsx.h"
|
|
|
|
static const struct i3c_device_id st_lsm6dsx_i3c_ids[] = {
|
|
I3C_DEVICE(0x0104, 0x006C, (void *)ST_LSM6DSO_ID),
|
|
I3C_DEVICE(0x0104, 0x006B, (void *)ST_LSM6DSR_ID),
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(i3c, st_lsm6dsx_i3c_ids);
|
|
|
|
static int st_lsm6dsx_i3c_probe(struct i3c_device *i3cdev)
|
|
{
|
|
struct regmap_config st_lsm6dsx_i3c_regmap_config = {
|
|
.reg_bits = 8,
|
|
.val_bits = 8,
|
|
};
|
|
const struct i3c_device_id *id = i3c_device_match_id(i3cdev,
|
|
st_lsm6dsx_i3c_ids);
|
|
struct device *dev = i3cdev_to_dev(i3cdev);
|
|
struct regmap *regmap;
|
|
|
|
regmap = devm_regmap_init_i3c(i3cdev, &st_lsm6dsx_i3c_regmap_config);
|
|
if (IS_ERR(regmap)) {
|
|
dev_err(dev, "Failed to register i3c regmap %ld\n", PTR_ERR(regmap));
|
|
return PTR_ERR(regmap);
|
|
}
|
|
|
|
return st_lsm6dsx_probe(dev, 0, (uintptr_t)id->data, regmap);
|
|
}
|
|
|
|
static struct i3c_driver st_lsm6dsx_driver = {
|
|
.driver = {
|
|
.name = "st_lsm6dsx_i3c",
|
|
.pm = pm_sleep_ptr(&st_lsm6dsx_pm_ops),
|
|
},
|
|
.probe = st_lsm6dsx_i3c_probe,
|
|
.id_table = st_lsm6dsx_i3c_ids,
|
|
};
|
|
module_i3c_driver(st_lsm6dsx_driver);
|
|
|
|
MODULE_AUTHOR("Vitor Soares <vitor.soares@synopsys.com>");
|
|
MODULE_DESCRIPTION("STMicroelectronics st_lsm6dsx i3c driver");
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_IMPORT_NS("IIO_LSM6DSX");
|