root/sound/soc/codecs/adav803.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. adav803_probe

   1 // SPDX-License-Identifier: GPL-2.0-only
   2 /*
   3  * ADAV803 audio driver
   4  *
   5  * Copyright 2014 Analog Devices Inc.
   6  */
   7 
   8 #include <linux/module.h>
   9 #include <linux/i2c.h>
  10 #include <linux/regmap.h>
  11 
  12 #include <sound/soc.h>
  13 
  14 #include "adav80x.h"
  15 
  16 static const struct i2c_device_id adav803_id[] = {
  17         { "adav803", 0 },
  18         { }
  19 };
  20 MODULE_DEVICE_TABLE(i2c, adav803_id);
  21 
  22 static int adav803_probe(struct i2c_client *client,
  23                              const struct i2c_device_id *id)
  24 {
  25         return adav80x_bus_probe(&client->dev,
  26                 devm_regmap_init_i2c(client, &adav80x_regmap_config));
  27 }
  28 
  29 static struct i2c_driver adav803_driver = {
  30         .driver = {
  31                 .name = "adav803",
  32         },
  33         .probe = adav803_probe,
  34         .id_table = adav803_id,
  35 };
  36 module_i2c_driver(adav803_driver);
  37 
  38 MODULE_DESCRIPTION("ASoC ADAV803 driver");
  39 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
  40 MODULE_AUTHOR("Yi Li <yi.li@analog.com>>");
  41 MODULE_LICENSE("GPL");

/* [<][>][^][v][top][bottom][index][help] */