ALSA: hda: cs35l41: Move cs35l41* calls to its own symbol namespace
[linux-2.6-microblaze.git] / sound / pci / hda / cs35l41_hda_i2c.c
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // cs35l41.c -- CS35l41 HDA I2C driver
4 //
5 // Copyright 2021 Cirrus Logic, Inc.
6 //
7 // Author: Lucas Tanure <tanureal@opensource.cirrus.com>
8
9 #include <linux/module.h>
10 #include <linux/i2c.h>
11 #include <linux/acpi.h>
12
13 #include "cs35l41_hda.h"
14
15 static int cs35l41_hda_i2c_probe(struct i2c_client *clt, const struct i2c_device_id *id)
16 {
17         const char *device_name;
18
19         /* Compare against the device name so it works for I2C, normal ACPI
20          * and for ACPI by i2c-multi-instantiate matching cases
21          */
22         if (strstr(dev_name(&clt->dev), "CLSA0100"))
23                 device_name = "CLSA0100";
24         else if (strstr(dev_name(&clt->dev), "CSC3551"))
25                 device_name = "CSC3551";
26         else
27                 return -ENODEV;
28
29         return cs35l41_hda_probe(&clt->dev, device_name, clt->addr, clt->irq,
30                                  devm_regmap_init_i2c(clt, &cs35l41_regmap_i2c));
31 }
32
33 static int cs35l41_hda_i2c_remove(struct i2c_client *clt)
34 {
35         return cs35l41_hda_remove(&clt->dev);
36 }
37
38 static const struct i2c_device_id cs35l41_hda_i2c_id[] = {
39         { "cs35l41-hda", 0 },
40         {}
41 };
42
43 #ifdef CONFIG_ACPI
44 static const struct acpi_device_id cs35l41_acpi_hda_match[] = {
45         {"CLSA0100", 0 },
46         {"CSC3551", 0 },
47         { },
48 };
49 MODULE_DEVICE_TABLE(acpi, cs35l41_acpi_hda_match);
50 #endif
51
52 static struct i2c_driver cs35l41_i2c_driver = {
53         .driver = {
54                 .name           = "cs35l41-hda",
55                 .acpi_match_table = ACPI_PTR(cs35l41_acpi_hda_match),
56         },
57         .id_table       = cs35l41_hda_i2c_id,
58         .probe          = cs35l41_hda_i2c_probe,
59         .remove         = cs35l41_hda_i2c_remove,
60 };
61
62 module_i2c_driver(cs35l41_i2c_driver);
63
64 MODULE_DESCRIPTION("HDA CS35L41 driver");
65 MODULE_IMPORT_NS(SND_HDA_SCODEC_CS35L41);
66 MODULE_AUTHOR("Lucas Tanure <tanureal@opensource.cirrus.com>");
67 MODULE_LICENSE("GPL");