ths7303.h 602 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2013 Texas Instruments Inc
  4. *
  5. * Copyright 2013 Cisco Systems, Inc. and/or its affiliates.
  6. *
  7. * Contributors:
  8. * Hans Verkuil <hans.verkuil@cisco.com>
  9. * Lad, Prabhakar <prabhakar.lad@ti.com>
  10. * Martin Bugge <marbugge@cisco.com>
  11. */
  12. #ifndef THS7353_H
  13. #define THS7353_H
  14. /**
  15. * struct ths7303_platform_data - Platform dependent data
  16. * @ch_1: Bias value for channel one.
  17. * @ch_2: Bias value for channel two.
  18. * @ch_3: Bias value for channel three.
  19. */
  20. struct ths7303_platform_data {
  21. u8 ch_1;
  22. u8 ch_2;
  23. u8 ch_3;
  24. };
  25. #endif