mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
The pxa2xx sound library modules are only used by the ASoC driver since
commit b094de7810 ("ASoC: codec: Remove pxa2xx-ac97.c"), so move the
code into the one module that uses as a simpliciation.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://patch.msgid.link/20260505202426.3605262-3-arnd@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
12 lines
232 B
C
12 lines
232 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef PXA2XX_LIB_H
|
|
#define PXA2XX_LIB_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
/* modem registers, used by touchscreen driver */
|
|
u32 pxa2xx_ac97_read_modr(void);
|
|
u32 pxa2xx_ac97_read_misr(void);
|
|
|
|
#endif
|