mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
5852f2afcd
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/20240509174158.2211071-2-u.kleine-koenig@pengutronix.de Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
98 lines
2.2 KiB
C
98 lines
2.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* AD714X CapTouch Programmable Controller driver (I2C bus)
|
|
*
|
|
* Copyright 2009-2011 Analog Devices Inc.
|
|
*/
|
|
|
|
#include <linux/input.h> /* BUS_I2C */
|
|
#include <linux/i2c.h>
|
|
#include <linux/module.h>
|
|
#include <linux/types.h>
|
|
#include <linux/pm.h>
|
|
#include "ad714x.h"
|
|
|
|
static int ad714x_i2c_write(struct ad714x_chip *chip,
|
|
unsigned short reg, unsigned short data)
|
|
{
|
|
struct i2c_client *client = to_i2c_client(chip->dev);
|
|
int error;
|
|
|
|
chip->xfer_buf[0] = cpu_to_be16(reg);
|
|
chip->xfer_buf[1] = cpu_to_be16(data);
|
|
|
|
error = i2c_master_send(client, (u8 *)chip->xfer_buf,
|
|
2 * sizeof(*chip->xfer_buf));
|
|
if (unlikely(error < 0)) {
|
|
dev_err(&client->dev, "I2C write error: %d\n", error);
|
|
return error;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ad714x_i2c_read(struct ad714x_chip *chip,
|
|
unsigned short reg, unsigned short *data, size_t len)
|
|
{
|
|
struct i2c_client *client = to_i2c_client(chip->dev);
|
|
int i;
|
|
int error;
|
|
|
|
chip->xfer_buf[0] = cpu_to_be16(reg);
|
|
|
|
error = i2c_master_send(client, (u8 *)chip->xfer_buf,
|
|
sizeof(*chip->xfer_buf));
|
|
if (error >= 0)
|
|
error = i2c_master_recv(client, (u8 *)chip->xfer_buf,
|
|
len * sizeof(*chip->xfer_buf));
|
|
|
|
if (unlikely(error < 0)) {
|
|
dev_err(&client->dev, "I2C read error: %d\n", error);
|
|
return error;
|
|
}
|
|
|
|
for (i = 0; i < len; i++)
|
|
data[i] = be16_to_cpu(chip->xfer_buf[i]);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ad714x_i2c_probe(struct i2c_client *client)
|
|
{
|
|
struct ad714x_chip *chip;
|
|
|
|
chip = ad714x_probe(&client->dev, BUS_I2C, client->irq,
|
|
ad714x_i2c_read, ad714x_i2c_write);
|
|
if (IS_ERR(chip))
|
|
return PTR_ERR(chip);
|
|
|
|
i2c_set_clientdata(client, chip);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct i2c_device_id ad714x_id[] = {
|
|
{ "ad7142_captouch" },
|
|
{ "ad7143_captouch" },
|
|
{ "ad7147_captouch" },
|
|
{ "ad7147a_captouch" },
|
|
{ "ad7148_captouch" },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(i2c, ad714x_id);
|
|
|
|
static struct i2c_driver ad714x_i2c_driver = {
|
|
.driver = {
|
|
.name = "ad714x_captouch",
|
|
.pm = pm_sleep_ptr(&ad714x_pm),
|
|
},
|
|
.probe = ad714x_i2c_probe,
|
|
.id_table = ad714x_id,
|
|
};
|
|
|
|
module_i2c_driver(ad714x_i2c_driver);
|
|
|
|
MODULE_DESCRIPTION("Analog Devices AD714X Capacitance Touch Sensor I2C Bus Driver");
|
|
MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
|
|
MODULE_LICENSE("GPL");
|