asoc-poodle.h (361B)
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __LINUX_PLATFORM_DATA_POODLE_AUDIO 3#define __LINUX_PLATFORM_DATA_POODLE_AUDIO 4 5/* locomo is not a proper gpio driver, and uses its own api */ 6struct poodle_audio_platform_data { 7 struct device *locomo_dev; 8 9 int gpio_amp_on; 10 int gpio_mute_l; 11 int gpio_mute_r; 12 int gpio_232vcc_on; 13 int gpio_jk_b; 14}; 15 16#endif