Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * SSM2518 amplifier audio driver
0004  *
0005  * Copyright 2013 Analog Devices Inc.
0006  *  Author: Lars-Peter Clausen <lars@metafoo.de>
0007  */
0008 
0009 #ifndef __LINUX_PLATFORM_DATA_SSM2518_H__
0010 #define __LINUX_PLATFORM_DATA_SSM2518_H__
0011 
0012 /**
0013  * struct ssm2518_platform_data - Platform data for the ssm2518 driver
0014  * @enable_gpio: GPIO connected to the nSD pin. Set to -1 if the nSD pin is
0015  *            hardwired.
0016  */
0017 struct ssm2518_platform_data {
0018     int enable_gpio;
0019 };
0020 
0021 #endif