Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/sound/soc/codecs/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  src4xxx-i2c.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
//
// Driver for SRC4XXX codecs
//
// Copyright 2021-2022 Deqx Pty Ltd
// Author: Matt Flax <flatmax@flatmax.com>

#include <linux/i2c.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/regmap.h>

#include "src4xxx.h"

static int src4xxx_i2c_probe(struct i2c_client *i2c)
{
 return src4xxx_probe(&i2c->dev,
  devm_regmap_init_i2c(i2c, &src4xxx_regmap_config), NULL);
}

static const struct i2c_device_id src4xxx_i2c_ids[] = {
 { "src4392" },
 { }
};
MODULE_DEVICE_TABLE(i2c, src4xxx_i2c_ids);

static const struct of_device_id src4xxx_of_match[] __maybe_unused = {
 { .compatible = "ti,src4392", },
 { }
};
MODULE_DEVICE_TABLE(of, src4xxx_of_match);


static struct i2c_driver src4xxx_i2c_driver = {
 .driver = {
  .name = "src4xxx",
  .of_match_table = of_match_ptr(src4xxx_of_match),
 },
 .probe = src4xxx_i2c_probe,
 .id_table = src4xxx_i2c_ids,
};
module_i2c_driver(src4xxx_i2c_driver);

MODULE_DESCRIPTION("ASoC SRC4392 CODEC I2C driver");
MODULE_AUTHOR("Matt Flax ");
MODULE_LICENSE("GPL");

Messung V0.5
C=97 H=96 G=96

¤ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.