mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
b53d477756
This converts the WM0010 codec to use GPIO descriptors. It's a pretty straight-forward conversion also switching over the single in-tree user in the S3C Cragganmore module for S3C 6410. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://lore.kernel.org/r/20231208-descriptors-sound-wlf-v1-1-c4dab6f521ec@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
17 lines
321 B
C
17 lines
321 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* wm0010.h -- Platform data for WM0010 DSP Driver
|
|
*
|
|
* Copyright 2012 Wolfson Microelectronics PLC.
|
|
*
|
|
* Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
|
|
*/
|
|
|
|
#ifndef WM0010_PDATA_H
|
|
#define WM0010_PDATA_H
|
|
|
|
struct wm0010_pdata {
|
|
int irq_flags;
|
|
};
|
|
|
|
#endif
|