/* * Driver for ADAU1361/ADAU1461/ADAU1761/ADAU1961 codec * * Copyright 2014 Analog Devices Inc. * Author: Lars-Peter Clausen * * Licensed under the GPL-2. */ #include #include #include #include #include #include "adau1761.h" static int adau1761_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id) { struct regmap_config config; config = adau1761_regmap_config; config.val_bits = 8; config.reg_bits = 16; return adau1761_probe(&client->dev, devm_regmap_init_i2c(client, &config), id->driver_data, NULL); } static int adau1761_i2c_remove(struct i2c_client *client) { adau17x1_remove(&client->dev); return 0; } static const struct i2c_device_id adau1761_i2c_ids[] = { { "adau1361", ADAU1361 }, { "adau1461", ADAU1761 }, { "adau1761", ADAU1761 }, { "adau1961", ADAU1361 }, { } }; MODULE_DEVICE_TABLE(i2c, adau1761_i2c_ids); #if defined(CONFIG_OF) static const struct of_device_id adau1761_i2c_dt_ids[] = { { .compatible = "adi,adau1361", }, { .compatible = "adi,adau1461", }, { .compatible = "adi,adau1761", }, { .compatible = "adi,adau1961", }, { }, }; MODULE_DEVICE_TABLE(of, adau1761_i2c_dt_ids); #endif static struct i2c_driver adau1761_i2c_driver = { .driver = { .name = "adau1761", .of_match_table = of_match_ptr(adau1761_i2c_dt_ids), }, .probe = adau1761_i2c_probe, .remove = adau1761_i2c_remove, .id_table = adau1761_i2c_ids, }; module_i2c_driver(adau1761_i2c_driver); MODULE_DESCRIPTION("ASoC ADAU1361/ADAU1461/ADAU1761/ADAU1961 CODEC I2C driver"); MODULE_AUTHOR("Lars-Peter Clausen "); MODULE_LICENSE("GPL"); inux/net-next.git/tree/tools/lib/vsprintf.c?id=3279da4c8877357b1001b4a3359069d588053f27'>treecommitdiff
p;id=bddb2afcb6c52a545f18fb9bcd4829828ebf4a3a'>codecs/wm8962.c
diff options
AgeCommit message (Expand)AuthorFilesLines
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2017-02-07 10:40:50 +0100
committerJohannes Berg <johannes.berg@intel.com>2017-02-07 10:40:50 +0100
commitbddb2afcb6c52a545f18fb9bcd4829828ebf4a3a (patch)
tree0021fe481f8acf3694d92d72f3dd1b2a71a20ca3 /sound/soc/codecs/wm8962.c
parent228c8c6b1f4376788e9d5ab00d50b10228eb40d3 (diff)
mac80211: add back lost debugfs files
Somehow these files were never present or lost, but the code is there and they seem somewhat useful, so add them back. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'sound/soc/codecs/wm8962.c')