/* * ADAV801 audio driver * * Copyright 2014 Analog Devices Inc. * * Licensed under the GPL-2. */ #include #include #include #include #include "adav80x.h" static const struct spi_device_id adav80x_spi_id[] = { { "adav801", 0 }, { } }; MODULE_DEVICE_TABLE(spi, adav80x_spi_id); static int adav80x_spi_probe(struct spi_device *spi) { struct regmap_config config; config = adav80x_regmap_config; config.read_flag_mask = 0x01; return adav80x_bus_probe(&spi->dev, devm_regmap_init_spi(spi, &config)); } static int adav80x_spi_remove(struct spi_device *spi) { snd_soc_unregister_codec(&spi->dev); return 0; } static struct spi_driver adav80x_spi_driver = { .driver = { .name = "adav801", }, .probe = adav80x_spi_probe, .remove = adav80x_spi_remove, .id_table = adav80x_spi_id, }; module_spi_driver(adav80x_spi_driver); MODULE_DESCRIPTION("ASoC ADAV801 driver"); MODULE_AUTHOR("Lars-Peter Clausen "); MODULE_AUTHOR("Yi Li >"); MODULE_LICENSE("GPL"); nds-private-remove'>nds-private-remove net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
emove&id=69973b830859bc6529a7a0468ba0d80ee5117826'>pcmcia/Makefile
diff options
AgeCommit message (Expand)AuthorFilesLines
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-12-11 11:17:54 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-11 11:17:54 -0800
commit69973b830859bc6529a7a0468ba0d80ee5117826 (patch)
tree5f11fe15ed9d9a3ab9c92242030e54b73ecdce45 /sound/pcmcia/Makefile
parent2e4333c14de06a333783d6812cf3c4998f78b0c8 (diff)
Linux 4.9
Diffstat (limited to 'sound/pcmcia/Makefile')