/* * 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"); logtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-10-20 15:44:19 +0200
committerTobias Klauser <tklauser@distanz.ch>2017-02-15 10:34:18 +0100
commit5db4992d8f040b8d8db0b86d42806e0c417f7ccf (patch)
tree5b06e952af482d45f3ade64e77824662e34b7fa2 /arch/ia64/hp
parent370ebb0ef6255132373ed35d13e7b1d8d2eb7003 (diff)
usbnet: pegasus: Use net_device_stats from struct net_devicends-private-remove
Instead of using a private copy of struct net_device_stats in struct pegasus, use stats from struct net_device. Also remove the now unnecessary .ndo_get_stats function. Cc: Petko Manolov <petkan@nucleusys.com> Cc: linux-usb@vger.kernel.org Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'arch/ia64/hp')