soc-card.h (130dc08c827db76f4a32fe7867075029fe9071d1) soc-card.h (d17b60b2c46750ebfb6ea39a2b02d988b97484eb)
1/* SPDX-License-Identifier: GPL-2.0
2 *
3 * soc-card.h
4 *
5 * Copyright (C) 2019 Renesas Electronics Corp.
6 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7 */
8#ifndef __SOC_CARD_H

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

15
16struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
17 const char *name);
18int snd_soc_card_jack_new(struct snd_soc_card *card, const char *id, int type,
19 struct snd_soc_jack *jack,
20 struct snd_soc_jack_pin *pins, unsigned int num_pins);
21
22int snd_soc_card_suspend_pre(struct snd_soc_card *card);
1/* SPDX-License-Identifier: GPL-2.0
2 *
3 * soc-card.h
4 *
5 * Copyright (C) 2019 Renesas Electronics Corp.
6 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7 */
8#ifndef __SOC_CARD_H

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

15
16struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
17 const char *name);
18int snd_soc_card_jack_new(struct snd_soc_card *card, const char *id, int type,
19 struct snd_soc_jack *jack,
20 struct snd_soc_jack_pin *pins, unsigned int num_pins);
21
22int snd_soc_card_suspend_pre(struct snd_soc_card *card);
23int snd_soc_card_suspend_post(struct snd_soc_card *card);
23
24/* device driver data */
25static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card,
26 void *data)
27{
28 card->drvdata = data;
29}
30

--- 20 unchanged lines hidden ---
24
25/* device driver data */
26static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card,
27 void *data)
28{
29 card->drvdata = data;
30}
31

--- 20 unchanged lines hidden ---