ssm2518.h 489 B

12345678910111213141516171819202122
  1. /*
  2. * SSM2518 amplifier audio driver
  3. *
  4. * Copyright 2013 Analog Devices Inc.
  5. * Author: Lars-Peter Clausen <lars@metafoo.de>
  6. *
  7. * Licensed under the GPL-2.
  8. */
  9. #ifndef __LINUX_PLATFORM_DATA_SSM2518_H__
  10. #define __LINUX_PLATFORM_DATA_SSM2518_H__
  11. /**
  12. * struct ssm2518_platform_data - Platform data for the ssm2518 driver
  13. * @enable_gpio: GPIO connected to the nSD pin. Set to -1 if the nSD pin is
  14. * hardwired.
  15. */
  16. struct ssm2518_platform_data {
  17. int enable_gpio;
  18. };
  19. #endif