mn88473.h 556 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Panasonic MN88473 DVB-T/T2/C demodulator driver
  4. *
  5. * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
  6. */
  7. #ifndef MN88473_H
  8. #define MN88473_H
  9. #include <linux/dvb/frontend.h>
  10. struct mn88473_config {
  11. /*
  12. * Max num of bytes given I2C adapter could write at once.
  13. * Default: unlimited
  14. */
  15. u16 i2c_wr_max;
  16. /*
  17. * Xtal frequency Hz.
  18. * Default: 25000000
  19. */
  20. u32 xtal;
  21. /* Everything after that is returned by the driver. */
  22. /*
  23. * DVB frontend.
  24. */
  25. struct dvb_frontend **fe;
  26. };
  27. #endif