Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * SSM2518 amplifier audio driver
4 *
5 * Copyright 2013 Analog Devices Inc.
6 * Author: Lars-Peter Clausen <lars@metafoo.de>
7 */
8
9#ifndef __LINUX_PLATFORM_DATA_SSM2518_H__
10#define __LINUX_PLATFORM_DATA_SSM2518_H__
11
12/**
13 * struct ssm2518_platform_data - Platform data for the ssm2518 driver
14 * @enable_gpio: GPIO connected to the nSD pin. Set to -1 if the nSD pin is
15 * hardwired.
16 */
17struct ssm2518_platform_data {
18 int enable_gpio;
19};
20
21#endif