mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
ba2a2c378a
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. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Link: https://lore.kernel.org/r/20240502074722.1103986-2-u.kleine-koenig@pengutronix.de Signed-off-by: Mark Brown <broonie@kernel.org>
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
//
|
|
// Driver for SRC4XXX codecs
|
|
//
|
|
// Copyright 2021-2022 Deqx Pty Ltd
|
|
// Author: Matt Flax <flatmax@flatmax.com>
|
|
|
|
#include <linux/i2c.h>
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/module.h>
|
|
#include <linux/regmap.h>
|
|
|
|
#include "src4xxx.h"
|
|
|
|
static int src4xxx_i2c_probe(struct i2c_client *i2c)
|
|
{
|
|
return src4xxx_probe(&i2c->dev,
|
|
devm_regmap_init_i2c(i2c, &src4xxx_regmap_config), NULL);
|
|
}
|
|
|
|
static const struct i2c_device_id src4xxx_i2c_ids[] = {
|
|
{ "src4392" },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(i2c, src4xxx_i2c_ids);
|
|
|
|
static const struct of_device_id src4xxx_of_match[] __maybe_unused = {
|
|
{ .compatible = "ti,src4392", },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(of, src4xxx_of_match);
|
|
|
|
|
|
static struct i2c_driver src4xxx_i2c_driver = {
|
|
.driver = {
|
|
.name = "src4xxx",
|
|
.of_match_table = of_match_ptr(src4xxx_of_match),
|
|
},
|
|
.probe = src4xxx_i2c_probe,
|
|
.id_table = src4xxx_i2c_ids,
|
|
};
|
|
module_i2c_driver(src4xxx_i2c_driver);
|
|
|
|
MODULE_DESCRIPTION("ASoC SRC4392 CODEC I2C driver");
|
|
MODULE_AUTHOR("Matt Flax <flatmax@flatmax.com>");
|
|
MODULE_LICENSE("GPL");
|