/* * ADAV803 audio driver * * Copyright 2014 Analog Devices Inc. * * Licensed under the GPL-2. */ #include #include #include #include #include "adav80x.h" static const struct i2c_device_id adav803_id[] = { { "adav803", 0 }, { } }; MODULE_DEVICE_TABLE(i2c, adav803_id); static int adav803_probe(struct i2c_client *client, const struct i2c_device_id *id) { return adav80x_bus_probe(&client->dev, devm_regmap_init_i2c(client, &adav80x_regmap_config)); } static int adav803_remove(struct i2c_client *client) { snd_soc_unregister_codec(&client->dev); return 0; } static struct i2c_driver adav803_driver = { .driver = { .name = "adav803", }, .probe = adav803_probe, .remove = adav803_remove, .id_table = adav803_id, }; module_i2c_driver(adav803_driver); MODULE_DESCRIPTION("ASoC ADAV803 driver"); MODULE_AUTHOR("Lars-Peter Clausen "); MODULE_AUTHOR("Yi Li >"); MODULE_LICENSE("GPL"); 3a21615672b2bf7724a65755799260325dda'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2017-02-10 10:14:24 +1000
committerDave Airlie <airlied@redhat.com>2017-02-10 10:14:24 +1000
commit697d3a21615672b2bf7724a65755799260325dda (patch)
tree79dfa1b95274ee71e9d8c4a35b377f88d1cdd9e0 /drivers/usb/README
parent811b40c83db047ba22a0c5b638186ed2b8c9810c (diff)
parent6e7eb1783be7f19eb071c96ddda0bbf22279ff46 (diff)
Merge tag 'drm-intel-fixes-2017-02-09' of git://anongit.freedesktop.org/git/drm-intel into drm-fixes
Hopefully final fixes for v4.10, about half of them stable material. * tag 'drm-intel-fixes-2017-02-09' of git://anongit.freedesktop.org/git/drm-intel: drm/i915: Always convert incoming exec offsets to non-canonical drm/i915: Remove overzealous fence warn on runtime suspend drm/i915/bxt: Add MST support when do DPLL calculation drm/i915: don't warn about Skylake CPU - KabyPoint PCH combo drm/i915: fix i915 running as dom0 under Xen drm/i915: Flush untouched framebuffers before display on !llc drm/i915: fix use-after-free in page_flip_completed()
Diffstat (limited to 'drivers/usb/README')