mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 22:05:08 +00:00
8c491103c9
The function i2c_match_id() is used to fetch the matching ID from the i2c_device_id table. This is often used to then retrieve the matching driver_data. This can be done in one step with the helper i2c_get_match_data(). This helper has a couple other benefits: * It doesn't need the i2c_device_id passed in so we do not need to have that forward declared, allowing us to remove those or move the i2c_device_id table down to its more natural spot with the other module info. * It also checks for device match data, which allows for OF and ACPI based probing. That means we do not have to manually check those first and can remove those checks. Signed-off-by: Andrew Davis <afd@ti.com> Link: https://patch.msgid.link/20241203200001.197295-1-afd@ti.com Signed-off-by: Mark Brown <broonie@kernel.org>
48 lines
990 B
C
48 lines
990 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* AD1936/AD1937 audio driver
|
|
*
|
|
* Copyright 2014 Analog Devices Inc.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/i2c.h>
|
|
#include <linux/regmap.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
#include "ad193x.h"
|
|
|
|
static const struct i2c_device_id ad193x_id[] = {
|
|
{ "ad1936", AD193X },
|
|
{ "ad1937", AD193X },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(i2c, ad193x_id);
|
|
|
|
static int ad193x_i2c_probe(struct i2c_client *client)
|
|
{
|
|
struct regmap_config config;
|
|
|
|
config = ad193x_regmap_config;
|
|
config.val_bits = 8;
|
|
config.reg_bits = 8;
|
|
|
|
return ad193x_probe(&client->dev,
|
|
devm_regmap_init_i2c(client, &config),
|
|
(uintptr_t)i2c_get_match_data(client));
|
|
}
|
|
|
|
static struct i2c_driver ad193x_i2c_driver = {
|
|
.driver = {
|
|
.name = "ad193x",
|
|
},
|
|
.probe = ad193x_i2c_probe,
|
|
.id_table = ad193x_id,
|
|
};
|
|
module_i2c_driver(ad193x_i2c_driver);
|
|
|
|
MODULE_DESCRIPTION("ASoC AD1936/AD1937 audio CODEC driver");
|
|
MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
|
|
MODULE_LICENSE("GPL");
|