snow.c (03ab3da3b215bac4ebb093c808d54596e03e3225) snow.c (46aed597527384b30a6d49bff1806f6b1ed1fd77)
1/*
2 * ASoC machine driver for Snow boards
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but

--- 89 unchanged lines hidden (view full) ---

98 return ret;
99 }
100
101 return ret;
102}
103
104static const struct of_device_id snow_of_match[] = {
105 { .compatible = "google,snow-audio-max98090", },
1/*
2 * ASoC machine driver for Snow boards
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but

--- 89 unchanged lines hidden (view full) ---

98 return ret;
99 }
100
101 return ret;
102}
103
104static const struct of_device_id snow_of_match[] = {
105 { .compatible = "google,snow-audio-max98090", },
106 { .compatible = "google,snow-audio-max98091", },
106 { .compatible = "google,snow-audio-max98095", },
107 {},
108};
109
110static struct platform_driver snow_driver = {
111 .driver = {
112 .name = "snow-audio",
113 .owner = THIS_MODULE,
114 .pm = &snd_soc_pm_ops,
115 .of_match_table = snow_of_match,
116 },
117 .probe = snow_probe,
118};
119
120module_platform_driver(snow_driver);
121
122MODULE_DESCRIPTION("ALSA SoC Audio machine driver for Snow");
123MODULE_LICENSE("GPL");
107 { .compatible = "google,snow-audio-max98095", },
108 {},
109};
110
111static struct platform_driver snow_driver = {
112 .driver = {
113 .name = "snow-audio",
114 .owner = THIS_MODULE,
115 .pm = &snd_soc_pm_ops,
116 .of_match_table = snow_of_match,
117 },
118 .probe = snow_probe,
119};
120
121module_platform_driver(snow_driver);
122
123MODULE_DESCRIPTION("ALSA SoC Audio machine driver for Snow");
124MODULE_LICENSE("GPL");